pull/153/head
openbuilds-engineer 2020-08-10 16:27:13 +02:00
rodzic bb47d23007
commit 1caaebcc57
4 zmienionych plików z 1027 dodań i 1270 usunięć

Wyświetl plik

@ -1,4 +1,6 @@
v1.0.239: Add support for VFD/PWM spindles to Tool On menu, Fixed bug in Surfacing Wizard Issue #139, Updated Certificates v1.0.241: Updated Dependencies
v1.0.240: Updated Certicates
v1.0.239: Add support for VFD/PWM spindles to Tool On menu, Fixed bug in Surfacing Wizard Issue #139
v1.0.238: Added Automatic Probing (Find Endmill diameter automatically), Fix cosmetic bug in editing JS Macros. Fixed issues/enhancements #92, #108, #127, #128, #129, #130, #131, #132, #134, #135 v1.0.238: Added Automatic Probing (Find Endmill diameter automatically), Fix cosmetic bug in editing JS Macros. Fixed issues/enhancements #92, #108, #127, #128, #129, #130, #131, #132, #134, #135
v1.0.236/7: Fixed Pause bug v1.0.236/7: Fixed Pause bug
v1.0.235: Improved Serial Buffer check v1.0.235: Improved Serial Buffer check

Wyświetl plik

@ -1,5 +1,9 @@
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = '1'; process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = '1';
process.on('uncaughtException', function(err) {
console.log(err);
})
// To see console.log output run with `DEBUGCONTROL=true electron .` or set environment variable for DEBUGCONTROL=true // To see console.log output run with `DEBUGCONTROL=true electron .` or set environment variable for DEBUGCONTROL=true
// debug_log debug overhead // debug_log debug overhead
DEBUG = false; DEBUG = false;
@ -2240,7 +2244,10 @@ if (isElectron()) {
title: "OpenBuilds CONTROL ", title: "OpenBuilds CONTROL ",
frame: false, frame: false,
autoHideMenuBar: true, autoHideMenuBar: true,
icon: '/app/favicon.png', //icon: '/app/favicon.png',
icon: nativeImage.createFromPath(
path.join(__dirname, "/app/favicon.png")
),
webgl: true, webgl: true,
experimentalFeatures: true, experimentalFeatures: true,
experimentalCanvasFeatures: true, experimentalCanvasFeatures: true,
@ -2251,7 +2258,7 @@ if (isElectron()) {
var ipaddr = ip.address(); var ipaddr = ip.address();
// jogWindow.loadURL(`//` + ipaddr + `:3000/`) // jogWindow.loadURL(`//` + ipaddr + `:3000/`)
jogWindow.loadURL("http://localhost:3000/"); jogWindow.loadURL("http://localhost:3000/");
// jogWindow.webContents.openDevTools() jogWindow.webContents.openDevTools()
jogWindow.on('close', function(event) { jogWindow.on('close', function(event) {
if (!forceQuit) { if (!forceQuit) {

2274
package-lock.json wygenerowano

Plik diff jest za duży Load Diff

Wyświetl plik

@ -1,31 +1,31 @@
{ {
"name": "OpenBuildsCONTROL", "name": "OpenBuildsCONTROL",
"version": "1.0.240", "version": "1.0.241",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Interface Software", "description": "OpenBuildsCONTROL CNC Machine Interface Software",
"author": "github.com/openbuilds <webmaster@openbuilds.com>", "author": "github.com/openbuilds <webmaster@openbuilds.com>",
"devDependencies": { "devDependencies": {
"copyfiles": "^2.1.0", "copyfiles": "^2.3.0",
"electron": "^8.1.1", "electron": "^9.2.0",
"electron-builder": "^22.4.0", "electron-builder": "^22.8.0",
"ncp": "^2.0.0" "ncp": "^2.0.0"
}, },
"dependencies": { "dependencies": {
"avrgirl-arduino": "^4.0.0", "avrgirl-arduino": "^4.2.3",
"detect-rpi": "^1.3.0", "detect-rpi": "^1.4.0",
"directory-tree": "^2.2.1", "directory-tree": "^2.2.4",
"electron-updater": "^4.2.5", "electron-updater": "^4.3.4",
"express": "^4.16.4", "express": "^4.17.1",
"formidable": "^1.2.1", "formidable": "^1.2.2",
"https": "^1.0.0", "https": "^1.0.0",
"ip": "^1.1.5", "ip": "^1.1.5",
"lodash": "^4.17.15", "lodash": "^4.17.19",
"md5": "^2.2.1", "md5": "^2.3.0",
"mkdirp": "^1.0.3", "mkdirp": "^1.0.4",
"node-abi": "^2.15.0", "node-abi": "^2.18.0",
"rimraf": "^2.6.3", "rimraf": "^3.0.2",
"serialport": "^8.0.7", "serialport": "^9.0.1",
"socket.io": "^2.2.0" "socket.io": "^2.3.0"
}, },
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {