Skip to content

Commit 07a2c68

Browse files
committed
Removed the PauseAtLayer script.
Cura new release will include an unified version of the plugins so the M25 version of the script will be available and it is already compatible with the Finder.
1 parent c1cb9a6 commit 07a2c68

File tree

6 files changed

+14
-46
lines changed

6 files changed

+14
-46
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@ Comming soon.
1313

1414
Download from the .curapackages from Releases page and drop them into Cura.
1515
After you restart Cura, plugins will be installed and you can save .GX files already.
16-
In order to add Flashforge Finder, you need to use the Extensions -> Flashforge Finder -> Install files
17-
menu entry. After that step, you can see FlashForge Finder in the Add Printer dialog.
18-
Also, you can use the "Pause at layer (Flashforge Finder)" post-processing script
19-
to print in multiple colors with the programmed filament switch method.
16+
17+
In order to add Flashforge Finder, you need to use the Extensions ->
18+
Flashforge Finder -> Install files menu entry. After that step, you can see FlashForge Finder
19+
in the Add Printer dialog.
2020

2121
## From source
2222

2323
You can checkout the repository and use the GNU Make tool to build the .curapackage
2424
files yourself:
2525

2626
git clone https://github.com/ronoaldo/FlashforgeFinderIntegration
27-
make -C FlashforgeFinderIntegration
27+
cd FlashforgeFinderIntegration
28+
make
2829

2930
After that, there will be two .curapackage files in the build directory.
3031
Follow the same steps as the "Binary Releases" section to use them.

plugins/FlashforgeFinderIntegration/Installer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Author: Ronoaldo JLP
2+
# Date: May 24, 2020
3+
# Description: Install printer definition and other scripts for the Flashforge Finder printer.
4+
# License: GPLv3
15

26
import os
37
import shutil
@@ -42,10 +46,6 @@ def installFiles(self, showMessage=True):
4246
"src": os.path.join(plugin_path, "printer", "meshes"),
4347
"dst": os.path.join(resources_path, "meshes")
4448
},
45-
"PauseAtLayerFFFinder.py": {
46-
"src": os.path.join(plugin_path, "scripts"),
47-
"dst": os.path.join(resources_path, "scripts")
48-
},
4949
"finder_low.inst.cfg": {
5050
"src": os.path.join(plugin_path, "printer", "quality", "finder"),
5151
"dst": os.path.join(resources_path, "quality", "finder")

plugins/FlashforgeFinderIntegration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"email": "ronoaldo@gmail.com",
66
"website": "https://github.com/ronoaldo/FlashforgeFinderIntegration"
77
},
8-
"description": "Flashforge Finder integration utilities to enable setting up and using the printer.",
8+
"description": "Flashforge Finder integration utilities to enable setting up and using the printer. This plugin uses the configuration files from https://github.com/eskeyaar/Flashforge-Finder-",
99
"display_name": "Flashforge Finder Integration",
1010
"package_id": "FlashforgeFinderIntegration",
1111
"package_type": "plugin",

plugins/FlashforgeFinderIntegration/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "FlashforgeFinderIntegration",
33
"author": "Ronoaldo JLP",
44
"version": "1.0.0",
5-
"description": "Flashforge Finder integration utilities to enable setting up and using the printer.",
5+
"description": "Flashforge Finder integration utilities to enable setting up and using the printer. This plugin uses the configuration files from https://github.com/eskeyaar/Flashforge-Finder-",
66
"api": 5,
77
"supported_sdk_versions": ["6.0.0", "6.1.0", "6.2.0", "6.3.0", "7.0.0", "7.1.0", "7.2.0"],
88
"i18n-catalog": "cura"

plugins/FlashforgeFinderIntegration/scripts/PauseAtLayerFFFinder.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

plugins/GXWriter/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Author: Ronoaldo JLP
22
# Date: May 24, 2020
3-
# Description: This module implements parsing and writing xgcode 1.0 files.
3+
# Description: This plugin generates and inserts code including a image of the
4+
# slices part.
45
# License: GPLv3
56

67
import sys

0 commit comments

Comments
 (0)