Skip to content

Commit

Permalink
Merge pull request #301 from BradyAJohnston/fix-template
Browse files Browse the repository at this point in the history
Fix: MN Template Selection
  • Loading branch information
BradyAJohnston authored Sep 5, 2023
2 parents 8affccd + 243a5a9 commit 4685a41
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ test:

version := $(shell grep version pyproject.toml | grep -o -E "\b[0-9]+\.[0-9]+\.[0-9]+\b")

template:
zip -r MolecularNodes/assets/template/Molecular_Nodes.zip MolecularNodes/assets/template/Molecular_Nodes -x *blend1

release:
git clean -dfX
zip -r MolecularNodes_$(version).zip MolecularNodes -x *pycache* *.blend1
make template
zip -r MolecularNodes_$(version).zip MolecularNodes -x *pycache* *.blend1 MolecularNodes/assets/template/Molecular_Nodes/*
3 changes: 1 addition & 2 deletions MolecularNodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,4 @@ def register():

def unregister():
bpy.types.NODE_MT_add.remove(MN_add_node_menu)
auto_load.unregister()
pref.template_uninstall()
auto_load.unregister()
Binary file modified MolecularNodes/assets/template/Molecular_Nodes.zip
Binary file not shown.
Binary file modified MolecularNodes/assets/template/Molecular_Nodes/startup.blend
Binary file not shown.

0 comments on commit 4685a41

Please sign in to comment.