Skip to content

Commit

Permalink
Removed the PauseAtLayer script.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ronoaldo committed Jun 5, 2020
1 parent c1cb9a6 commit 07a2c68
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 46 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,19 @@ Comming soon.

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

In order to add Flashforge Finder, you need to use the Extensions ->
Flashforge Finder -> Install files menu entry. After that step, you can see FlashForge Finder
in the Add Printer dialog.

## From source

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

git clone https://github.com/ronoaldo/FlashforgeFinderIntegration
make -C FlashforgeFinderIntegration
cd FlashforgeFinderIntegration
make

After that, there will be two .curapackage files in the build directory.
Follow the same steps as the "Binary Releases" section to use them.
Expand Down
8 changes: 4 additions & 4 deletions plugins/FlashforgeFinderIntegration/Installer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Author: Ronoaldo JLP
# Date: May 24, 2020
# Description: Install printer definition and other scripts for the Flashforge Finder printer.
# License: GPLv3

import os
import shutil
Expand Down Expand Up @@ -42,10 +46,6 @@ def installFiles(self, showMessage=True):
"src": os.path.join(plugin_path, "printer", "meshes"),
"dst": os.path.join(resources_path, "meshes")
},
"PauseAtLayerFFFinder.py": {
"src": os.path.join(plugin_path, "scripts"),
"dst": os.path.join(resources_path, "scripts")
},
"finder_low.inst.cfg": {
"src": os.path.join(plugin_path, "printer", "quality", "finder"),
"dst": os.path.join(resources_path, "quality", "finder")
Expand Down
2 changes: 1 addition & 1 deletion plugins/FlashforgeFinderIntegration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"email": "[email protected]",
"website": "https://github.com/ronoaldo/FlashforgeFinderIntegration"
},
"description": "Flashforge Finder integration utilities to enable setting up and using the printer.",
"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-",
"display_name": "Flashforge Finder Integration",
"package_id": "FlashforgeFinderIntegration",
"package_type": "plugin",
Expand Down
2 changes: 1 addition & 1 deletion plugins/FlashforgeFinderIntegration/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "FlashforgeFinderIntegration",
"author": "Ronoaldo JLP",
"version": "1.0.0",
"description": "Flashforge Finder integration utilities to enable setting up and using the printer.",
"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-",
"api": 5,
"supported_sdk_versions": ["6.0.0", "6.1.0", "6.2.0", "6.3.0", "7.0.0", "7.1.0", "7.2.0"],
"i18n-catalog": "cura"
Expand Down

This file was deleted.

3 changes: 2 additions & 1 deletion plugins/GXWriter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Author: Ronoaldo JLP
# Date: May 24, 2020
# Description: This module implements parsing and writing xgcode 1.0 files.
# Description: This plugin generates and inserts code including a image of the
# slices part.
# License: GPLv3

import sys
Expand Down

0 comments on commit 07a2c68

Please sign in to comment.