Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanderwalt committed Apr 11, 2024
1 parent e23bce7 commit 899ec34
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
10 Apr 2024: Dark Mode, Iconography Library, Reselect and toolpath management tools, UI enhancements
10 Apr 2024: Dark Mode, Iconography Library, Reselect and toolpath management tools, UI enhancements, New Settings page, Added LEAD Plasma Add-On support
19 Sep 2023: Disable CONTROL integration. Use the SAVE GCODE button please
16 Jun 2023: Added X32 option to Board selection
5 June 2023: Updated Analytics V4 ID
Expand Down
4 changes: 4 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -878,4 +878,8 @@ d-grid {
bottom: 0px;
right: 10px;
background: rgba(240, 240, 240, 0.85);
}

.step-list>li::before {
color: #555 !important;
}
4 changes: 4 additions & 0 deletions css/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -548,4 +548,8 @@ body.theme_dark, .theme_dark div.window, .theme_dark .card {
.theme_dark .selected-item>.remover {
background-color: #333;
border-bottom: 1px solid #fff;
}

.theme_dark .step-list>li::before {
color: #aaa !important;
}
8 changes: 0 additions & 8 deletions js/application-settings-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,6 @@ function selectMachine(type) {
var yaxis = 810
var zaxis = 90
//$('#toolheadSelect').data('select').val('spindleonoff')
} else if (type == "leadmachine1010laser") {
var xaxis = 730
var yaxis = 810
var zaxis = 90
//$('#toolheadSelect').data('select').val('laserm4')
}
$("#machinetype").val(type)
$("#sizexmax").val(xaxis)
Expand Down Expand Up @@ -414,8 +409,6 @@ function setMachineButton(type) {
template = `<img src="images/mch/` + type + `.png"/> OpenBuilds LEAD 1515`
} else if (type == "leadmachine1010") {
template = `<img src="images/mch/` + type + `.png"/> OpenBuilds LEAD 1010`
} else if (type == "leadmachine1010laser") {
template = `<img src="images/mch/` + type + `.png"/> OpenBuilds LEAD 1010 with Laser Module`
} else {
template = `<img src="images/mch/sphinx55.png"/> Select Machine`
}
Expand Down Expand Up @@ -473,7 +466,6 @@ $(document).ready(function() {
<a href="#" class="dropdown-toggle"><img src="images/mch/leadmachine1010.png" width="16px"/> OpenBuilds Lead Machine</a>
<ul class="ribbon-dropdown" data-role="dropdown">
<li onclick="selectMachine('leadmachine1010');"><a href="#"><img src="images/mch/leadmachine1010.png" width="16px"/>OpenBuilds LEAD 1010</a></li>
<li onclick="selectMachine('leadmachine1010laser');"><a href="#"><img src="images/mch/leadmachine1010laser.png" width="16px"/>OpenBuilds LEAD 1010 with Laser Module</a></li>
<li onclick="selectMachine('leadmachine1515');"><a href="#"><img src="images/mch/leadmachine1515.png" width="16px"/>OpenBuilds LEAD 1515</a></li>
</ul>
Expand Down

0 comments on commit 899ec34

Please sign in to comment.