Skip to content

Commit ec06ac6

Browse files
committed
Moved profile settings for a newer version.
1 parent 4bd16e7 commit ec06ac6

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "printer"]
22
path = plugins/FlashforgeFinderIntegration/printer
3-
url = https://github.com/eskeyaar/Flashforge-Finder-
3+
url = https://github.com/ronoaldo/Flashforge-Finder

Makefile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Makefile build script to bundle the source
2+
# code as .curapackage and -src.zip for distribution.
3+
14
VERSION=master
25

36
all: build
@@ -8,6 +11,7 @@ clean:
811
build: build-gxwriter build-ffintegration
912

1013
build-gxwriter: build/GXWriter-$(VERSION).curapackage
14+
1115
build/GXWriter-$(VERSION).curapackage: plugins/GXWriter/* LICENSE icon.png
1216
mkdir -p build/GXWriter/files/plugins
1317
cp LICENSE icon.png build/GXWriter
@@ -28,7 +32,8 @@ build/GXWriter-$(VERSION).curapackage: plugins/GXWriter/* LICENSE icon.png
2832
-x "*pyc" \
2933
-r .
3034

31-
build-ffintegration: build/FlashforgeFinderIntegration-$(VERSION).curapackage
35+
build-ffintegration: build/FlashforgeFinderIntegration-$(VERSION).curapackage plugins/FlashforgeFinderIntegration/printer/definitions/finder.def.json
36+
3237
build/FlashforgeFinderIntegration-$(VERSION).curapackage: plugins/FlashforgeFinderIntegration/* LICENSE icon.png
3338
mkdir -p build/FlashforgeFinderIntegration/files/plugins
3439
cp LICENSE icon.png build/FlashforgeFinderIntegration
@@ -49,7 +54,11 @@ build/FlashforgeFinderIntegration-$(VERSION).curapackage: plugins/FlashforgeFind
4954
-x "*pyc" \
5055
-r FlashforgeFinderIntegration
5156

52-
release: build/GXWriter-$(VERSION).curapackage build/FlashforgeFinderIntegration-$(VERSION).curapackage
57+
plugins/FlashforgeFinderIntegration/printer/definitions/finder.def.json:
58+
git submodule init
59+
git submodule update
60+
61+
release: build
5362
if [ x"$(VERSION)" = x"master" ] ; then echo "Unable to release from master. Use make VERSION=X.Y.Z" ; exit 1; fi
5463
git tag v$(VERSION)
5564
git push --tags

0 commit comments

Comments
 (0)