File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 28
28
"blender" : (4 , 2 , 0 ),
29
29
"category" : "Render" ,
30
30
"description" : "LuxCoreRender integration for Blender" ,
31
- "warning" : "alpha1 " ,
31
+ "warning" : "alpha.1 " ,
32
32
33
33
"wiki_url" : "https://wiki.luxcorerender.org/" ,
34
34
"tracker_url" : "https://github.com/LuxCoreRender/BlendLuxCore/issues/new" ,
35
35
}
36
- version_string = f'{ bl_info ["version" ][0 ]} .{ bl_info ["version" ][1 ]} { bl_info ["warning" ]} '
36
+
37
+ version_string = f'{ bl_info ["version" ][0 ]} .{ bl_info ["version" ][1 ]} .{ bl_info ["version" ][2 ]} '
38
+ if 'warning' in bl_info :
39
+ version_string = version_string + f'-{ bl_info ["warning" ]} '
37
40
38
41
PYLUXCORE_VERSION = '2.10.0a1' # specifies the version of pyluxcore that corresponds to this version of BlendLuxCore
39
42
@@ -283,7 +286,7 @@ def register():
283
286
nodes .register ()
284
287
285
288
pyluxcore .Init (LuxCoreLog .add )
286
- print (f"BlendLuxCore (wheels) { version_string } registered (with pyluxcore { pyluxcore .Version ()} )" )
289
+ print (f"BlendLuxCore { version_string } registered (with pyluxcore { pyluxcore .Version ()} )" )
287
290
288
291
def unregister ():
289
292
engine .unregister ()
Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ schema_version = "1.0.0"
3
3
# Example of manifest file for a Blender extension
4
4
# Change the values according to your extension
5
5
id = " BlendLuxCore"
6
- # Recommend versioning like MASTER.MAJOR.MINOR.
7
- # E.g.: "2.9.4": master: 2; major: 9; minor: 3.
8
- # BlendLuxCore Wheels version is 2.9.4 "4 is alpha4 here"
9
- version = " 2.9.4"
6
+ # Versioning should follow the semver standard: https://semver.org/
7
+ # I.e. MAJOR.MINOR.PATCH
8
+ # E.g.: "2.9.4": major: 2; minor: 9; patch: 3.
9
+ # or for pre-release versions: "2.9.4-alpha.1": major: 2; minor: 9; patch: 3; pre-release: alpha.1
10
+ version = " 2.10.0-alpha.1"
10
11
name = " BlendLuxCore"
11
12
tagline = " LuxCore"
12
13
maintainer = " BlendLuxCore team"
You can’t perform that action at this time.
0 commit comments