GpxUi is a graphical user interface wrapped around GPX, a command line utility.
Should work on Windows (test on Windows 10), Mac (tested on El Capitan) and Linux (tested on Kubuntu 15 and 16).
GPX is a post processing utility for converting gcode output from 3D slicing software like Cura, KISSlicer, S3DCreator and Slic3r to x3g files for standalone 3D printing on Makerbot Cupcake, ThingOMatic, and Replicator 1/2/2x printers - with support for both stock and SailFish firmwares.
This GpxUi includes gpx.exe for use as a plugin to slicers, but also includes a settings editor and setup program to make it easy to get GPX set up and running with the right settings. Also includes a machine settings editor so you can mess with arcane stuff like how many steps per mm.
- Download and run setup.exe from the releases page
- Download a GpxUi.dmg from the releases page
- Open the GpxUi.dmg file and drag the GpxUi app to your Applications folder
- Run GpxUi from the Launcher
- Build it from source (instructions below) and do
make install
- run "GpxUi"
- Choose your printer type
- Choose the gcode flavor of the slicer you want to use
- Click "Save" to save those two settings into gpx.ini
- Click the translate button, it'll ask for the name of the gcode file and the name of the output x3g file
The setup added gpx.exe to your path, so you can easily add it as a post processor to Slic3r:
- Put Slic3r into expert mode via File.Preferences from the menu bar and restart Slic3r
- Choose "Print Settings" tab, "Output options" panel
- In "Post-processing scripts" type "gpx.exe" all by itself without quotes or parameters
- Replace step 3 with: In "Post-processing scripts" type "/Application/GpxUi.app/Contents/MacOS/gpx"
It added to the end of your path, so if you have a gpx.exe somewhere else on your machine and on your path, it won't read the settings you set in GpxUi because the other one will win and it won't know where these settings are.
You can switch the settings around and gpx.exe will just use whatever you saved last. Settings are also saved when you use GpxUi to translate a file.
Setup added an icon to your desktop and to your start menu. If you like a clean desktop like me, drag the desktop one to the trash, you can still run it from start. Seems like letting you drag it to the trash was easier than bothering you with a question in setup.
GpxUi includes an auto-updater courtesy of Squirrel for Windows. It checks for updates when you start it. So if you leave it running or never run it, it doesn't update. Plus it has a limiter on it so it doesn't check every time you boot it up, just when it has been a while. You can turn this off on the Help.Updates... menu.
- Have setup connect gpx.exe to the right-click on gcode files menu so you can right-click on a gcode file and choose "Convert to x3g"
- A warning when it notices another gpx.exe earlier on the path
- Have an option to send a copy of the x3g to a flashair card
- Have setup or a configuration dialog automatically add plugins to various slicers
- Drag and drop?
- QT 5.5
- Squirrel.Windows (only need this if you are going to build setup)
- Clone the repository
- Get the submodules
git submodule update --init
- Install QT and make sure it and the mingw32 it includes is on your path, I run gnu make under bash so I may have introduced a build-time dependency on bash
make
for the debug build ormake release
for the optimized build
For Windows setup.exe: make squirrel.windows
For Mac dmg: make macdeployqt CODESIGNID="signature name"
- Clone the repository
git clone https://github.com/markwal/GpxUi
- Get the submodules
git submodule update --init
- Install qt5 tools and libraries
sudo apt-get install qttools5-dev-tools qtbase5-dev
make
for the debug build ormake release
for the optimized buildmake install