mirror of
https://projects.blender.org/blender/blender.git
synced 2025-01-22 07:22:12 -05:00
Extensions: Manifest polishing
* Match name with the extension ID. * More strict double comment for optional parameters. * Comment out tag since it is optional. * More complete explanation for the paths_exclude_pattern.
This commit is contained in:
parent
f839266b78
commit
dc7645ff95
Notes:
blender-bot
2024-10-10 14:21:34 +02:00
Referenced by issue #124452, Blender LTS: Maintenance Task 4.2
1 changed files with 14 additions and 12 deletions
|
@ -4,18 +4,18 @@ schema_version = "1.0.0"
|
|||
# Change the values according to your extension
|
||||
id = "my_example_extension"
|
||||
version = "1.0.0"
|
||||
name = "Test Extension"
|
||||
name = "My Example Extension"
|
||||
tagline = "This is another extension"
|
||||
maintainer = "Developer name <email@address.com>"
|
||||
# Supported types: "add-on", "theme"
|
||||
type = "add-on"
|
||||
|
||||
# Optional link to documentation, support, source files, etc
|
||||
# # Optional: link to documentation, support, source files, etc
|
||||
# website = "https://extensions.blender.org/add-ons/my-example-package/"
|
||||
|
||||
# Optional list defined by Blender and server, see:
|
||||
# https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html
|
||||
tags = ["Animation", "Sequencer"]
|
||||
# # Optional: tag list defined by Blender and server, see:
|
||||
# # https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html
|
||||
# tags = ["Animation", "Sequencer"]
|
||||
|
||||
blender_version_min = "4.2.0"
|
||||
# # Optional: Blender version that the extension does not support, earlier versions are supported.
|
||||
|
@ -27,18 +27,18 @@ blender_version_min = "4.2.0"
|
|||
license = [
|
||||
"SPDX:GPL-3.0-or-later",
|
||||
]
|
||||
# Optional: required by some licenses.
|
||||
# # Optional: required by some licenses.
|
||||
# copyright = [
|
||||
# "2002-2024 Developer Name",
|
||||
# "1998 Company Name",
|
||||
# ]
|
||||
|
||||
# Optional list of supported platforms. If omitted, the extension will be available in all operating systems.
|
||||
# # Optional: list of supported platforms. If omitted, the extension will be available in all operating systems.
|
||||
# platforms = ["windows-x64", "macos-arm64", "linux-x64"]
|
||||
# Other supported platforms: "windows-arm64", "macos-x64"
|
||||
# # Other supported platforms: "windows-arm64", "macos-x64"
|
||||
|
||||
# Optional: bundle 3rd party Python modules.
|
||||
# https://docs.blender.org/manual/en/dev/advanced/extensions/python_wheels.html
|
||||
# # Optional: bundle 3rd party Python modules.
|
||||
# # https://docs.blender.org/manual/en/dev/advanced/extensions/python_wheels.html
|
||||
# wheels = [
|
||||
# "./wheels/hexdump-3.3-py3-none-any.whl",
|
||||
# "./wheels/jsmin-3.0.1-py3-none-any.whl",
|
||||
|
@ -63,9 +63,11 @@ license = [
|
|||
# files = "Import/export FBX from/to disk"
|
||||
# clipboard = "Copy and paste bone transforms"
|
||||
|
||||
# Optional: build settings.
|
||||
# https://docs.blender.org/manual/en/dev/advanced/extensions/command_line_arguments.html#command-line-args-extension-build
|
||||
# # Optional: advanced build settings.
|
||||
# # https://docs.blender.org/manual/en/dev/advanced/extensions/command_line_arguments.html#command-line-args-extension-build
|
||||
# [build]
|
||||
# # These are the default build excluded patterns.
|
||||
# # You only need to edit them if you want different options.
|
||||
# paths_exclude_pattern = [
|
||||
# "__pycache__/",
|
||||
# "/.git/",
|
||||
|
|
Loading…
Reference in a new issue