-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.opal
More file actions
66 lines (54 loc) · 2.46 KB
/
Copy pathmodule.opal
File metadata and controls
66 lines (54 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# Opal module metadata
#
# Lines not starting with a known keyword (i.e. 'name: ') will be ignored.
# One line per value.
#
# SPDX-FileCopyrightText: 2021-2026 Mirian Margiani
# SPDX-License-Identifier: CC0-1.0
#
# @@@ keep this line: based on template v1.0.2
#
# current semantic version number, cf. https://semver.org
version: 1.0.0
# plain name as used in the module repository URL, will be prefixed with "opal-"
# where necessary
name: mymodule
# styled name including capitalisation etc., will be prefixed with "Opal."
# where necessary
nameStyled: MyModule
# very short description of this module: must be plain text without formatting
# and should be as short as possible. This text may be used as the description
# of a Git repository, and is used in documentation.
briefDescription: QML module for TODO in Sailfish apps
# description of this module: may use rich text and will be translated in
# Opal Gallery. Line breaks can included with '\n' but should be avoided.
description: This module provides TODO.
# colon-separated list of attribution strings for the whole module, in the same
# form as SPDX FileCopyrightText entries
attribution: 2018-2026 Mirian Margiani
# colon-separated list of this module's current maintainer(s)
maintainers: Mirian Margiani
# colon-separated list of this module's author(s) and contributors
# this list should be exhaustive
authors: Mirian Margiani
# the module's SPDX license id, cf. https://spdx.org/licenses/
mainLicenseSpdx: GPL-3.0-or-later
# The main example page to be used in Opal Gallery is doc/gallery.qml.
# Additional pages must be placed in a directory called "doc/gallery" and listed
# in "extraGalleryPages". Set to "none" if only the main QML file is used.
# The field contains a space separated list of file names without path. Names
# must not contain spaces. Use "import 'gallery'" to use these extra components.
# Use "EmptyDummyPage.qml" as placeholder in examples (provided by Opal Gallery).
#
# Example:
# extraGalleryPages: Page1.qml Page2.qml MyComponent.qml
extraGalleryPages: none
# colon-separated list of other Opal modules that this module depends on
# Use the unstyled name without "opal-" prefix, as in the "name:" metadata field,
# or set this field to "none" if there are no dependencies.
dependencies: none
# where the module's sources are located
# This url will be automatically generated from the default repository url and
# this module's name as specified above.
# sourcesUrl: https://github.com/Pretty-SFOS/opal-<name>