Skip to content

Commit

Permalink
bump to 0.2.2: ready for review
Browse files Browse the repository at this point in the history
  • Loading branch information
atticus-lv committed Aug 12, 2024
1 parent 838e0d1 commit b7802f6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Atticus, AIGODLIKE Community",
"description": "Add Amazing notes to your node editor",
"blender": (4, 2, 0),
"version": (0, 2, 1),
"version": (0, 2, 2),
"location": "",
"doc_url": "",
"warning": "",
Expand Down
2 changes: 2 additions & 0 deletions _build_this_addon_.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def zip_dir() -> None:
with zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED, allowZip64=True) as zip:
for root, dirs, files in os.walk(tg_dir):
for file in files:
# if file name is this file, skip
if file == os.path.basename(__file__): continue
zip.write(os.path.join(root, file), arcname=os.path.join(root, file).replace(str(tg_dir), ''))
print(f'Zip file: {zip_file}')
shutil.rmtree(tg_dir)
Expand Down
4 changes: 2 additions & 2 deletions blender_manifest.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name = "Easy Show Tool"
id = "EasyShowTool"
maintainer = "Atticus, AIGODLIKE Community"
version = "0.2.1"
version = "0.2.2"
tagline = "Adds notes to your node editor"
blender_version_min = "4.2.0"
type = "add-on"
schema_version = "1.0.0"
tags = ["NODE","INTERFACE"]
tags = ["Node","User Interface"]
license = ["SPDX:GPL-3.0-or-later"]
website = "https://github.com/atticus-lv/EasyShowTool"
2 changes: 1 addition & 1 deletion preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class GreasePencilPerformanceProperty(bpy.types.PropertyGroup):
# lazy_update: BoolProperty(default=False, name='Lazy Update')

try_remove_svg_bound_stroke: BoolProperty(default=True, name='Add Blender Icon: Try to Remove Icon Bound')
select_all: BoolProperty(default=True, name='Drag Select: Only all selected layers are considered selected')
select_all: BoolProperty(default=False, name='Drag Select: Only all selected layers are considered selected')

snap_degree: IntProperty(name='Rotate Snap Degree', default=15)
detect_edge_px: IntProperty(default=20, name='Detect Edge Radius', subtype='PIXEL')
Expand Down

0 comments on commit b7802f6

Please sign in to comment.