Skip to content

Commit d3add05

Browse files
work on making addon compatible for the blender extension marketplace
1 parent 9d5e369 commit d3add05

File tree

5 files changed

+90
-88
lines changed

5 files changed

+90
-88
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
![GitHub release (latest by date)](https://img.shields.io/github/v/release/InteractiveComputerGraphics/blender-sequence-loader)
44
[![Documentation Status](https://readthedocs.org/projects/blender-sequence-loader/badge/?version=latest)](https://blender-sequence-loader.readthedocs.io/en/latest/?badge=latest)
55

6-
This is an addon for Blender 4.0+ (might work with 2.8+ but is not extensively tested on less recent versions) that enables loading of file sequences. The addon comes bundled together with [meshio](https://github.com/nschloe/meshio) which enables the loading of geometric data from a multitude of file formats. As stated there, the supported formats are listed in the following. Note that not all of the formats have been tested and some issues may still occur.
6+
This is an addon for Blender 4.0+ (might work with 2.8+ but is not extensively tested on less recent versions) that enables loading of file sequences. All data is loaded *just-in-time* when the Blender frame changes, in order to avoid excessive memory consumption. By default, the addon is able to load vertices, lines, triangles and quads. It is also able to automatically extract triangle and quad surface meshes from tetrahedral and hexahedral volume meshes. Scalar and vector attributes on vertices are also imported for visualization purposes.
7+
8+
The addon comes bundled together with [meshio](https://github.com/nschloe/meshio) which enables the loading of geometric data from a multitude of file formats. As stated there, the supported formats are listed in the following. Note that not all of the formats have been tested and some issues may still occur.
79

810
> [Abaqus](http://abaqus.software.polimi.it/v6.14/index.html) (`.inp`),
911
> ANSYS msh (`.msh`),
@@ -37,8 +39,6 @@ This is an addon for Blender 4.0+ (might work with 2.8+ but is not extensively t
3739
3840
[fileseq](https://github.com/justinfx/fileseq) is used to identify and load file sequences, while [rich](https://github.com/Textualize/rich) and [python-future](https://github.com/PythonCharmers/python-future) are included to satisfy unmet dependencies of the other packages.
3941

40-
All data is loaded *just-in-time* when the Blender frame changes, in order to avoid excessive memory consumption. By default, the addon is able to load vertices, lines, triangles and quads. It is also able to automatically extract triangle and quad surface meshes from tetrahedral and hexahedral volume meshes. Scalar and vector attributes on vertices are also imported for visualization purposes. See the following documentation for a brief introduction.
41-
4242
**DISCLAIMER: This project is still very much under development, so breaking changes may occur at any time!**
4343

4444
- [1. Installation](#1-installation)

blender_manifest.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ schema_version = "1.0.0"
33
# Example of manifest file for a Blender extension
44
# Change the values according to your extension
55
id = "sequence_loader"
6-
version = "0.3.6"
7-
name = "Blender Sequence Loader"
6+
version = "0.3.7"
7+
name = "Sequence Loader"
88
tagline = "Just-in-time loader for meshio-supported mesh file sequences"
99
maintainer = "Stefan Rhys Jeske <contact@srjeske.de>"
1010
# Supported types: "add-on", "theme"
@@ -25,7 +25,8 @@ blender_version_min = "4.2.0"
2525
# License conforming to https://spdx.org/licenses/ (use "SPDX: prefix)
2626
# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html
2727
license = [
28-
"SPDX:MIT",
28+
# "SPDX:MIT",
29+
"SPDX:GPL-3.0-or-later",
2930
]
3031
# # Optional: required by some licenses.
3132
# copyright = [

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9-
project = 'blender-sequence-loader'
9+
project = 'Sequence Loader'
1010
copyright = '2025, InteractiveComputerGraphics'
1111
author = 'InteractiveComputerGraphics'
12-
release = '0.3.6'
12+
release = '0.3.7'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

images/logo.png

-49 Bytes
Loading

0 commit comments

Comments
 (0)