Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: MN Template Selection #301

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 unregister():
bpy.types.NODE_MT_add.remove(MN_add_node_menu)
auto_load.unregister()
pref.template_uninstall()
auto_load.unregister()

Check warning on line 44 in MolecularNodes/__init__.py

View check run for this annotation

Codecov / codecov/patch

MolecularNodes/__init__.py#L44

Added line #L44 was not covered by tests
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.
Loading