master v1.0.390
peter 2025-06-02 21:37:31 +02:00
rodzic ef0d5bdcdd
commit 4bc126df96
6 zmienionych plików z 15 dodań i 37 usunięć

Wyświetl plik

@ -1,3 +1,6 @@
v1.0.390
- Removed mailling list signup form to allow access to CONTROL
- Lowered update check frequency
v1.0.389
- Add pseudo filename entry for surfacing wizard jobs (cosmetic) #383
- Add Mpos Gotozero menu item to Mobile Jog

Wyświetl plik

@ -280,4 +280,4 @@ select {
.step-list>li::before {
color: #111 !important;
}
}

Wyświetl plik

@ -1268,33 +1268,6 @@
</div>
</div>
<div class="card" id="registrationCard">
<div class="card-header p-1 m-0">
<i class="fas fa-fw fa-user-check"></i>&nbsp;Registration Settings
</div>
<div class="card-content">
<table class="table striped compact">
<thead>
<tr>
<th style="width: 70%;">Parameter</th>
<th style="width: 30%;">Status</th>
</tr>
</thead>
<tbody>
<tr>
<td class="pt-1 mt-0 pb-0 pt-0">Registered To: </td>
<td class="pt-1 mt-0 pb-0 pt-0"><span class="tally powerstatus" id="registrationCardRegistration">NOCOMM</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="cell p-0 m-0">
@ -1389,7 +1362,7 @@
<div class="card-header p-1 m-0">
<i class="fas fa-fw fa-tty"></i>&nbsp;Communications
</div>
<div class="card-content" style="height: calc(100vh - 530px); min-height: 90px; overflow-x: auto;">
<div class="card-content" style="min-height: 90px; overflow-x: auto;">
<table class="table striped compact">
<thead>
<tr>
@ -1966,8 +1939,6 @@
<script type="text/javascript" src="wizards/surfacing/surfacing.js"></script>
<script type="text/javascript" src="wizards/mailinglist/mailinglist.js"></script>
<!-- <script type="text/javascript" src="wizards/flashingtool/grbl-flashing.js"></script> -->
<script type="text/javascript" src="wizards/flashingtool2/flashingtool.js"></script>
@ -1982,4 +1953,4 @@
<script src="/lib/furcanIconPicker/iconpicker-1.5.0.js"></script>
</html>
<!-- -->
<!-- -->

Wyświetl plik

@ -33,9 +33,10 @@ function checkUpdate() {
}, 1000);
} else {
printLog("<span class='fg-darkRed'>[ update ] </span><span class='fg-green'>You are already running OpenBuilds CONTROL " + currentVersion + "</span>")
setTimeout(function() {
checkUpdate()
}, 60 * 60 * 1000) // 60 mins
// setTimeout(function() {
// checkUpdate()
// }, 60 * 60 * 1000) // 60 mins
// disable regular check - once on startup is enough
}
});
}, 1000)
@ -60,4 +61,4 @@ function cancelTimer() {
time = -1
$('#countdown').html('cancelled')
printLog("<span class='fg-darkRed'>[ Update Deferred! ] </span><span class='fg-darkGray'>No problem, we will ask you again next time</span>")
}
}

Wyświetl plik

@ -48,6 +48,9 @@ function flashToolBoard(device) {
}
function openFlashingTool() {
selectedControllerType = 'blackboxx32'
var template = `
<ul data-role="tabs" data-expand="true">
<li><a href="#" onclick="flashToolBoard('blackboxx32');"><img src="/wizards/flashingtool2/img/bbx32-icon.png" height="32"> <b>BlackBox X32</b></a></li>

Wyświetl plik

@ -211,4 +211,4 @@ function signUpMailinglist() {
}
});
}
}