pull/153/head v1.0.199
openbuilds-engineer 2019-11-04 23:10:04 +02:00
rodzic b9926027e4
commit c548ff756d
4 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,4 @@
v1.0.199: Improvd handling of Helican G2/G3 preview
v1.0.198: Fixed bug in Mobile Jog v1.0.198: Fixed bug in Mobile Jog
v1.0.197: Renewed SSL Certificates v1.0.197: Renewed SSL Certificates
v1.0.196: Added menu to troubleshooting tab to selectively disable frontend features for debugging v1.0.196: Added menu to troubleshooting tab to selectively disable frontend features for debugging

Wyświetl plik

@ -7,6 +7,7 @@ var loader = new THREE.ObjectLoader();
function convertParsedDataToObject(parsedData) { function convertParsedDataToObject(parsedData) {
parsedData = JSON.parse(parsedData)
var geometry = new THREE.BufferGeometry(); var geometry = new THREE.BufferGeometry();
var material = new THREE.LineBasicMaterial({ var material = new THREE.LineBasicMaterial({
vertexColors: THREE.VertexColors vertexColors: THREE.VertexColors

Wyświetl plik

@ -4,7 +4,8 @@ self.addEventListener('message', function(e) {
var data = e.data; var data = e.data;
var result = createObjectFromGCode(e.data.data) var result = createObjectFromGCode(e.data.data)
result = result; result = result;
self.postMessage(result); // console.log(result)
self.postMessage(JSON.stringify(result));
}, false); }, false);
// This is a simplified and updated version of http://gcode.joewalnes.com/ // This is a simplified and updated version of http://gcode.joewalnes.com/

Wyświetl plik

@ -1,6 +1,6 @@
{ {
"name": "OpenBuildsCONTROL", "name": "OpenBuildsCONTROL",
"version": "1.0.198", "version": "1.0.199",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "Machine Interface Driver for OpenBuilds", "description": "Machine Interface Driver for OpenBuilds",
"author": "github.com/openbuilds <webmaster@openbuilds.com>", "author": "github.com/openbuilds <webmaster@openbuilds.com>",