version in separate file

pull/254/head
Joe Marshall 2024-01-11 15:24:00 +00:00
rodzic 829b62b793
commit e5cb5cebc9
2 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -52,18 +52,17 @@ from mathutils import *
from shapely import geometry as sgeometry
from cam.ui import *
from cam.version import __version__
bl_info = {
"name": "CAM - gcode generation tools",
"author": "Vilem Novak",
"version": (0, 9, 3),
"blender": (2, 80, 0),
"version": __version__,
"blender": (3, 6, 0),
"location": "Properties > render",
"description": "Generate machining paths for CNC",
"warning": "there is no warranty for the produced gcode by now",
"wiki_url": "https://github.com/vilemduha/blendercam/wiki",
"warning": "",
"doc_url": "https://blendercam.com/",
"tracker_url": "",
"category": "Scene"}

Wyświetl plik

@ -0,0 +1 @@
__version__=(0,9,3)