Skip to content

Commit

Permalink
v1.4.2 release build
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayk03-dev committed Sep 24, 2024
1 parent 7eddf20 commit ef9d677
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ __pycache__
*.rej
*.elf
*.hex
.idea/deployment.xml
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbctrl",
"version": "1.4.1",
"version": "1.4.2",
"homepage": "https://onefinitycnc.com/",
"repository": "https://github.com/OneFinityCNC/onefinity",
"license": "GPL-3.0+",
Expand Down
2 changes: 1 addition & 1 deletion pakage-lock.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbctrl",
"version": "1.4.1",
"version": "1.4.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
Expand Down
4 changes: 3 additions & 1 deletion src/js/control-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,9 @@ module.exports = {
return;
}
const macrosList = this.state.macros_list.map(item => item.file_name);
var files_to_delete = selected_folder.files.map(item => item.file_name).filter(item => !macrosList.includes(item));
var files_to_delete = selected_folder.files
.map(item => item.file_name)
.filter(item => !macrosList.includes(item));
if (selected_folder.name != "default") {
this.config.gcode_list = this.config.gcode_list.filter(item => item.name != this.state.folder);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/py/bbctrl/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, ctrl):
self.values = {}

try:
self.version = "1.4.1"
self.version = "1.4.2"

# Load config template
with open(get_resource('http/config-template.json'), 'r',
Expand Down
2 changes: 1 addition & 1 deletion src/resources/onefinity_defaults.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.4.1",
"version": "1.4.2",
"settings": {
"junction-accel": 200000,
"max-deviation": 0.05,
Expand Down

0 comments on commit ef9d677

Please sign in to comment.