kopia lustrzana https://github.com/OpenBuilds/OpenBuilds-CONTROL
v1.0.278
rodzic
11ef4ed957
commit
08e5498b7c
|
@ -1,3 +1,4 @@
|
|||
v1.0.278: Fixed bug #179 (Electron upload path for Interface Firmware)
|
||||
v1.0.277: Fixed Y Calibrations Wizard Y+ button, Updated SSL Certificates, Fixed comments in Surfacing Wizard Gcode, Display output of "?" in log if sent via sendGcode, added 0.001" Incremental Jog , added Realtime feedrate Indicator to Feed Override slider, Support for JS Macros on startup, Updated Socket.IO
|
||||
v1.0.276: Focus on OK button on JobComplete dialog, Updated Door handling for UI, Updated DOOR messages in footer
|
||||
v1.0.275: Fixed /upload page for large files
|
||||
|
|
4
index.js
4
index.js
|
@ -2747,7 +2747,7 @@ function startChrome() {
|
|||
|
||||
// grab latest firmware.bin for Interface on startup
|
||||
|
||||
var file = fs.createWriteStream(path.join(__dirname, "firmware.bin"));
|
||||
var file = fs.createWriteStream(path.join(uploadsDir, "firmware.bin"));
|
||||
https.get("https://raw.githubusercontent.com/OpenBuilds/firmware/main/interface/firmware.bin", function(response) {
|
||||
response.pipe(file);
|
||||
file.on('finish', function() {
|
||||
|
@ -2794,7 +2794,7 @@ https.get("https://raw.githubusercontent.com/OpenBuilds/firmware/main/interface/
|
|||
|
||||
|
||||
|
||||
var firmwareImagePath = path.join(__dirname, './firmware.bin');
|
||||
var firmwareImagePath = path.join(uploadsDir, './firmware.bin');
|
||||
var spawn = require('child_process').spawn;
|
||||
const multer = require('multer');
|
||||
const storage = multer.diskStorage({
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "OpenBuildsCONTROL",
|
||||
"version": "1.0.277",
|
||||
"version": "1.0.278",
|
||||
"license": "AGPL-3.0",
|
||||
"description": "OpenBuildsCONTROL CNC Machine Interface Software",
|
||||
"author": "github.com/openbuilds <webmaster@openbuilds.com>",
|
||||
|
|
Ładowanie…
Reference in New Issue