Dev 5.2.1 #1

Merged
stilobique merged 2 commits from dev-5.2.1 into main 2026-07-08 19:21:15 +02:00
4 changed files with 7 additions and 5 deletions
Showing only changes of commit 53a2e17c7e - Show all commits
+3 -1
View File
@@ -1,6 +1,7 @@
<component name="ProjectRunConfigurationManager"> <component name="ProjectRunConfigurationManager">
<configuration default="false" name="Execute Pylinter CI" type="PythonConfigurationType" factoryName="Python"> <configuration default="false" name="Execute Pylinter CI" type="PythonConfigurationType" factoryName="Python">
<module name="Blender Objects Type" /> <module name="Blender Objects Type" />
<option name="ENV_FILES" value="" />
<option name="INTERPRETER_OPTIONS" value="" /> <option name="INTERPRETER_OPTIONS" value="" />
<option name="PARENT_ENVS" value="true" /> <option name="PARENT_ENVS" value="true" />
<envs> <envs>
@@ -22,7 +23,8 @@
<ENTRY IS_ENABLED="true" PARSER="runconfig" /> <ENTRY IS_ENABLED="true" PARSER="runconfig" />
</ENTRIES> </ENTRIES>
</EXTENSION> </EXTENSION>
<option name="SCRIPT_NAME" value="$PROJECT_DIR$/.github/lint.py" /> <option name="RUN_TOOL" value="" />
<option name="SCRIPT_NAME" value="$PROJECT_DIR$/.gitea/lint.py" />
<option name="PARAMETERS" value="--module=moderlab_type" /> <option name="PARAMETERS" value="--module=moderlab_type" />
<option name="SHOW_COMMAND_LINE" value="false" /> <option name="SHOW_COMMAND_LINE" value="false" />
<option name="EMULATE_TERMINAL" value="false" /> <option name="EMULATE_TERMINAL" value="false" />
+1 -1
View File
@@ -5,7 +5,7 @@ bl_info = {
'description': 'Add your description', 'description': 'Add your description',
'author': 'Aurelien Vaillant', 'author': 'Aurelien Vaillant',
'version': (0, 1, 0), 'version': (0, 1, 0),
'blender': (5, 2, 0), 'blender': (5, 1, 2),
'doc_url': "", 'doc_url': "",
'tracker_url': "", 'tracker_url': "",
'support': "COMMUNITY", 'support': "COMMUNITY",
+2 -2
View File
@@ -1,5 +1,5 @@
[![Python 3.10.2](https://img.shields.io/badge/python-3.10.2-sucess.svg)](https://www.python.org/downloads/release/python-3102/) [![Python 3.13.9](https://img.shields.io/badge/python-3.13.9-sucess.svg)](https://www.python.org/downloads/release/python-3139/)
![Blender](https://img.shields.io/badge/blender-3.1.0-sucess) ![Blender](https://img.shields.io/badge/blender-5.1.2-sucess)
# Blender Addon # Blender Addon
This repository is a toolbox to create a new blender addon. This repository is a toolbox to create a new blender addon.
+1 -1
View File
@@ -11,7 +11,7 @@ from utils.properties import ContainerObject
class Container(enum.Enum): class Container(enum.Enum):
"""Enumerate about the Geometry node""" """Enumerate about the Geometry node"""
BLENDER = ContainerObject(name='Blender', image='stilobique/blender', tag='3.1.2') BLENDER = ContainerObject(name='Blender', image='stilobique/blender', tag='5.1.2')
def launch_unit_test(test: [str] = None): def launch_unit_test(test: [str] = None):