-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Extension Spec Compatibility and Usability Improvements (#36)
* improve recursive import by default it will now detect common prefixes and eliminate them. in the future it might be interesting to have an option to keep prefixes and simply use blenders naming to create a new one with an incremented name. * show hidden option that changes the relative root path * add blender manifest for 4.2 marketplace support * change to relative imports to not make blender angry from changing sys.path * update for new spec * change maintainer
- Loading branch information
1 parent
d89c62d
commit 46044aa
Showing
15 changed files
with
147 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
schema_version = "1.0.0" | ||
|
||
# Example of manifest file for a Blender extension | ||
# Change the values according to your extension | ||
id = "sequence_loader" | ||
version = "0.3.3" | ||
name = "Blender Sequence Loader" | ||
tagline = "Just-in-time loader for meshio-supported mesh file sequences" | ||
maintainer = "Stefan Rhys Jeske <[email protected]>" | ||
# Supported types: "add-on", "theme" | ||
type = "add-on" | ||
|
||
# # Optional: link to documentation, support, source files, etc | ||
website = "https://github.com/InteractiveComputerGraphics/blender-sequence-loader" | ||
|
||
# # Optional: tag list defined by Blender and server, see: | ||
# # https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html | ||
tags = ["Animation", "Object"] | ||
|
||
blender_version_min = "4.2.0" | ||
# # Optional: Blender version that the extension does not support, earlier versions are supported. | ||
# # This can be omitted and defined later on the extensions platform if an issue is found. | ||
# blender_version_max = "5.1.0" | ||
|
||
# License conforming to https://spdx.org/licenses/ (use "SPDX: prefix) | ||
# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html | ||
license = [ | ||
"SPDX:MIT", | ||
] | ||
# # 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. | ||
# platforms = ["windows-x64", "macos-arm64", "linux-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 | ||
wheels = [ | ||
"./wheels/Fileseq-1.15.2-py3-none-any.whl", | ||
"./wheels/future-0.18.3-py3-none-any.whl", | ||
"./wheels/meshio-5.3.4-py3-none-any.whl", | ||
"./wheels/rich-13.7.0-py3-none-any.whl", | ||
] | ||
|
||
# # Optional: add-ons can list which resources they will require: | ||
# # * files (for access of any filesystem operations) | ||
# # * network (for internet access) | ||
# # * clipboard (to read and/or write the system clipboard) | ||
# # * camera (to capture photos and videos) | ||
# # * microphone (to capture audio) | ||
# # | ||
# # If using network, remember to also check `bpy.app.online_access` | ||
# # https://docs.blender.org/manual/en/dev/advanced/extensions/addons.html#internet-access | ||
# # | ||
# # For each permission it is important to also specify the reason why it is required. | ||
# # Keep this a single short sentence without a period (.) at the end. | ||
# # For longer explanations use the documentation or detail page. | ||
# | ||
[permissions] | ||
files = "Core functionality to load files from disk" | ||
|
||
# # 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/", | ||
"/*.zip", | ||
"/extern/", | ||
"/docs/", | ||
"/images/", | ||
"build_addon.py", | ||
"download_wheels.sh" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pip wheel fileseq==1.15.2 -w ./wheels --no-deps | ||
pip wheel meshio==5.3.4 -w ./wheels --no-deps | ||
pip wheel future==0.18.3 -w ./wheels --no-deps | ||
pip wheel rich==13.7.0 -w ./wheels --no-deps |