Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-02-13Python 3: Fix shebangsMiro Hrončok
* convert to python3 * only have shebangs + exec bits in files that have something to execute
2018-02-13Python 3: Fix the print() functionMiro Hrončok
Change generated by: python-modernize -wnf lib2to3.fixes.fix_print
2018-02-13Python 3: Fix except syntaxMiro Hrončok
Change generated by: python-modernize -wnf lib2to3.fixes.fix_except
2016-06-03Fix main scripts' command line optionsRock Storm
Command line options "-c" and "-e" require a file and a command to be specified, respectively, but current implementation did not require an argument after them.
2016-05-28pronsole.py: Add missing command line optionsRock Storm
2016-03-13Add or fix help messages for main scriptsRock Storm
2014-10-22WIP #561: use logging module for outputsGuillaume Seguin
2013-08-09Fix permissionsGuillaume Seguin
2013-08-09Keep old names for printrun modulesGuillaume Seguin
2013-08-09Readd a simple pronsole.pyGuillaume Seguin
2013-08-09Move pronsole, printcore and pronterface to printrunGuillaume Seguin
2013-08-07Changed extrusion length to hidden settingeldir
Pulled latest master from kliment/printun and changed extrusion length to a hidden setting. It is now saved upon change as settings.last_extrusion and can be set as such. Also added default extrusion length that may be used as a fall back for deploying printrun with a different default extrusion length without having to change that everywhere in the code.
2013-08-07Made default extrusion length a settingStefan Glatzel
Added "extrusion_default" to settings and made it editable via settings file. Setting is not written back when the user changes it through the gui.
2013-07-31Add tool command to pronsoleGuillaume Seguin
2013-07-23Fix a shitton of flake8 warnings and errorsGuillaume Seguin
2013-07-18Rework off() to work with MarlinGuillaume Seguin
2013-07-17Ignore off() argumentGuillaume Seguin
2013-07-16"off" should turn fans off too (#409)Guillaume Seguin
2013-07-16Add "off" buttonGuillaume Seguin
2013-07-16Add "off" command to pronsole (#409)Guillaume Seguin
2013-06-27Reindent do_bedtemp and fix broken code pathGuillaume Seguin
The if f >= 0 could be have been accessed even though f had not been assigned (if float(l) failed)
2013-06-27Fixing do_bedtemp so that it throws the correct errors.D1plo1d
2013-06-26Adding a pause_between_prints option for use with ABPs and ProntserveD1plo1d
2013-06-24Don't load CLI-provided filenames immediately in PronterfaceGuillaume Seguin
We were still parsing the files twice for this case as the command line parser was loading them, and the PronterWindow constructor was reloading them before updating the UI controls.
2013-06-19Fix command to list macrosKeegi
2013-06-19Escape double quotes in commandsKeegi
2013-06-18Call sys.exit() directly from do_exit() (#253)Guillaume Seguin
2013-06-16Start removing references to SkeinforgeGuillaume Seguin
2013-06-15Cleanup serial port detectionGuillaume Seguin
2013-06-12Removing bluetooth serial devices from the default connections because ↵D1plo1d
bluetooth serial ports persist on OSX and get in the way of connecting to real printers (very few, if any of which are bluetooth).
2013-06-11Overriding confirm in prontserve so that it doesn't become unresponsive. It ↵D1plo1d
doesn't prompt the user like pronsole but it at least functions.
2013-06-11Refactoring set temp to work with the prontserve logError exceptionsD1plo1d
2013-06-11Refactoring pronsole logging so that prontserve can send useful errors over ↵D1plo1d
websockets
2013-06-08Factor out model to gcode rename and fix #394Guillaume Seguin
This probably requires using an Unicode-based wx.
2013-06-04Add callbacks to update gviz params on the fly from options dialogGuillaume Seguin
2013-06-04Remove unused codeGuillaume Seguin
2013-06-04Correctly skip event to allow default processing for options widgetsGuillaume Seguin
2013-06-04Merge branch 'experimental' of github.com:kliment/Printrun into experimentalGuillaume Seguin
2013-06-04Implement resetting an option to its default valueKeegi
2013-06-04fix BooleanSetting _set_value to update the widgetKeegi
2013-06-04CleanupGuillaume Seguin
2013-06-04Fix StaticTextSetting object value getting/setting/update throwing exceptionsKeegi
2013-06-04Settings dialog get default values in tool tips automatically, added ↵Keegi
possibility to add static text items for annotations
2013-06-03Merge General and Printer settingsGuillaume Seguin
2013-06-02Detect M114/M105 produced by macros (final part of fixing #376)Guillaume Seguin
2013-05-31Woops, typo in options description.Guillaume Seguin
Thanks t00tie @ #reprap for reporting :)
2013-05-31Split options into groupsGuillaume Seguin
2013-05-30Make projectlayer settings be HiddenSettingsGuillaume Seguin
2013-05-30Add projectlayer settings declarations to pronsole.pyGuillaume Seguin
2013-05-29Don't eat M105 replies in pronsoleGuillaume Seguin