|
| 1 | +schema_version = "1.0.0" |
| 2 | + |
| 3 | +# Example of manifest file for a Blender extension |
| 4 | +# Change the values according to your extension |
| 5 | +id = "right_mouse_navigation" |
| 6 | +version = "2.3.3" |
| 7 | +name = "Right Mouse Navigation" |
| 8 | +tagline = "Game Engine-style viewport & node graph navigation" |
| 9 | +maintainer = "Spectral Vectors" |
| 10 | +# Supported types: "add-on", "theme" |
| 11 | +type = "add-on" |
| 12 | + |
| 13 | +# Optional link to documentation, support, source files, etc |
| 14 | +website = "https://github.com/SpectralVectors/RightMouseNavigation" |
| 15 | + |
| 16 | +# Optional list defined by Blender and server, see: |
| 17 | +# https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html |
| 18 | +tags = ["Animation", "Sequencer"] |
| 19 | + |
| 20 | +blender_version_min = "4.2.0" |
| 21 | +# # Optional: Blender version that the extension does not support, earlier versions are supported. |
| 22 | +# # This can be omitted and defined later on the extensions platform if an issue is found. |
| 23 | +# blender_version_max = "5.1.0" |
| 24 | + |
| 25 | +# License conforming to https://spdx.org/licenses/ (use "SPDX: prefix) |
| 26 | +# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html |
| 27 | +license = [ |
| 28 | + "SPDX:GPL-2.0-or-later", |
| 29 | +] |
| 30 | +# Optional: required by some licenses. |
| 31 | +# copyright = [ |
| 32 | +# "2002-2024 Developer Name", |
| 33 | +# "1998 Company Name", |
| 34 | +# ] |
| 35 | + |
| 36 | +# Optional list of supported platforms. If omitted, the extension will be available in all operating systems. |
| 37 | +# platforms = ["windows-x64", "macos-arm64", "linux-x64"] |
| 38 | +# Other supported platforms: "windows-arm64", "macos-x64" |
| 39 | + |
| 40 | +# Optional: bundle 3rd party Python modules. |
| 41 | +# https://docs.blender.org/manual/en/dev/advanced/extensions/python_wheels.html |
| 42 | +# wheels = [ |
| 43 | +# "./wheels/hexdump-3.3-py3-none-any.whl", |
| 44 | +# "./wheels/jsmin-3.0.1-py3-none-any.whl", |
| 45 | +# ] |
| 46 | + |
| 47 | +# # Optional: add-ons can list which resources they will require: |
| 48 | +# # * files (for access of any filesystem operations) |
| 49 | +# # * network (for internet access) |
| 50 | +# # * clipboard (to read and/or write the system clipboard) |
| 51 | +# # * camera (to capture photos and videos) |
| 52 | +# # * microphone (to capture audio) |
| 53 | +# # |
| 54 | +# # If using network, remember to also check `bpy.app.online_access` |
| 55 | +# # https://docs.blender.org/manual/en/dev/advanced/extensions/addons.html#internet-access |
| 56 | +# # |
| 57 | +# # For each permission it is important to also specify the reason why it is required. |
| 58 | +# # Keep this a single short sentence without a period (.) at the end. |
| 59 | +# # For longer explanations use the documentation or detail page. |
| 60 | +# |
| 61 | +# [permissions] |
| 62 | +# network = "Need to sync motion-capture data to server" |
| 63 | +# files = "Import/export FBX from/to disk" |
| 64 | +# clipboard = "Copy and paste bone transforms" |
| 65 | + |
| 66 | +# Optional: build settings. |
| 67 | +# https://docs.blender.org/manual/en/dev/advanced/extensions/command_line_arguments.html#command-line-args-extension-build |
| 68 | +# [build] |
| 69 | +# paths_exclude_pattern = [ |
| 70 | +# "__pycache__/", |
| 71 | +# "/.git/", |
| 72 | +# "/*.zip", |
| 73 | +# ] |
0 commit comments