Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
cfry committed Feb 9, 2024
1 parent 25a50de commit 7b00090
Show file tree
Hide file tree
Showing 20 changed files with 1,595 additions and 397 deletions.
12 changes: 12 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Dexter Development Environment (DDE)
Copyright (C) 2016-2024 Christopher Fry

GPLv3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
8 changes: 8 additions & 0 deletions core/dextersim.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,15 @@ DexterSim = class DexterSim{

static array_buffer_to_oplet_array(arr_buff){
let str = this.array_buffer_to_string(arr_buff)
if(str.endsWith(";")) {
str = str.substring(0, str.length - 1) //cut off the semicolon on the end
}
let split_str = str.split(" ")
//if its a var length instruction, then an integer is in place of the oplet and the oplet is one later
let orig_oplet_maybe = split_str[Instruction.INSTRUCTION_TYPE]
if(!Robot.is_oplet(orig_oplet_maybe)) { //assume its an integer for a variable-length instruction
split_str.splice(Instruction.INSTRUCTION_TYPE, 1) //removes integer from var length array. makign it 1 shorter
}
let oplet_array = []
let oplet
for(let i = 0; i < split_str.length; i++) {
Expand Down
5 changes: 2 additions & 3 deletions core/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
global.dde_version = "3.8.19" //require("../package.json").version
global.dde_release_date = "Jan 11, 2024" //require("../package.json").release_date

global.dde_version = "3.9.0" //require("../package.json").version
global.dde_release_date = "Feb 9, 2024" //require("../package.json").release_dat9
console.log("dde_version: " + global.dde_version + " dde_release_date: " + global.dde_release_date +
"\nRead electron_dde/core/job_engine_doc.txt for how to use the Job Engine.\n")

Expand Down
Loading

0 comments on commit 7b00090

Please sign in to comment.