bump rev 3.8.D1
This commit is contained in:
parent
5c93598661
commit
130da4f2d1
4 changed files with 4 additions and 3 deletions
1
notes.md
1
notes.md
|
|
@ -75,6 +75,7 @@
|
|||
* `B` need to force cut line at synthetic z bottom (midlines, etc)
|
||||
* `B` contour does not honor clip to stock
|
||||
|
||||
* `F` add {progress} substitution and maybe {time-remaining} if can be calc'd
|
||||
* `F` import and follow 2D paths (conformed like pocket contours)
|
||||
* `F` add user-defined origin (issue #28)
|
||||
* `F` add custom gcode operation for things like injecting pauses
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "grid-apps",
|
||||
"version": "3.8.0D",
|
||||
"version": "3.8.1D",
|
||||
"description": "grid.space 3d slice & modeling tools",
|
||||
"author": "Stewart Allen <sa@grid.space>",
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ gapp.main("main.kiri", [], (root) => {
|
|||
const modfns = root.kirimod = ( root.kirimod || [] );
|
||||
|
||||
const kiri = root.kiri = {
|
||||
beta: 3800,
|
||||
beta: 3801,
|
||||
driver: {}, // driver modules
|
||||
load(fn) {
|
||||
modfns.push(fn);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
let terms = {
|
||||
COPYRIGHT: "Copyright (C) Stewart Allen <sa@grid.space> - All Rights Reserved",
|
||||
LICENSE: "See the license.md file included with the source distribution",
|
||||
VERSION: (is_self ? self : this).debug_version || "3.8.D0"
|
||||
VERSION: (is_self ? self : this).debug_version || "3.8.D1"
|
||||
};
|
||||
|
||||
if (typeof(module) === 'object') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue