- Removed tool-reversed option. Use tool-direction-mode instead.
- Handle zero length dwell correctly.
- Fixed problem with cached GCode file upload when file changed on disk.
+ - Run simulation at low process priority.
## v0.4.1
- Fix toolpath view axes bug.
type = int, help = 'Maximum planning time in seconds')
parser.add_argument('--max-loop', default = 30,
type = int, help = 'Maximum time in loop in seconds')
+parser.add_argument('--priority', default = 1,
+ type = int, help = 'Set "nice" process priority')
args = parser.parse_args()
state = json.loads(args.state)
config = json.loads(args.config)
+os.nice(args.priority)
plan = Plan(args.gcode, state, config)
plan.run()