Update more files

This commit is contained in:
2026-07-08 19:19:13 +02:00
parent 40bd1d0424
commit 53a2e17c7e
4 changed files with 7 additions and 5 deletions
+3 -1
View File
@@ -1,6 +1,7 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Execute Pylinter CI" type="PythonConfigurationType" factoryName="Python">
<module name="Blender Objects Type" />
<option name="ENV_FILES" value="" />
<option name="INTERPRETER_OPTIONS" value="" />
<option name="PARENT_ENVS" value="true" />
<envs>
@@ -22,7 +23,8 @@
<ENTRY IS_ENABLED="true" PARSER="runconfig" />
</ENTRIES>
</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="SHOW_COMMAND_LINE" value="false" />
<option name="EMULATE_TERMINAL" value="false" />
+1 -1
View File
@@ -5,7 +5,7 @@ bl_info = {
'description': 'Add your description',
'author': 'Aurelien Vaillant',
'version': (0, 1, 0),
'blender': (5, 2, 0),
'blender': (5, 1, 2),
'doc_url': "",
'tracker_url': "",
'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/)
![Blender](https://img.shields.io/badge/blender-3.1.0-sucess)
[![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-5.1.2-sucess)
# 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):
"""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):