Skip to content

Commit 4bc126d

Browse files
v1.0.390
1 parent ef0d5bd commit 4bc126d

File tree

6 files changed

+15
-37
lines changed

6 files changed

+15
-37
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v1.0.390
2+
- Removed mailling list signup form to allow access to CONTROL
3+
- Lowered update check frequency
14
v1.0.389
25
- Add pseudo filename entry for surfacing wizard jobs (cosmetic) #383
36
- Add Mpos Gotozero menu item to Mobile Jog

app/css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,4 +280,4 @@ select {
280280

281281
.step-list>li::before {
282282
color: #111 !important;
283-
}
283+
}

app/index.html

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,33 +1268,6 @@
12681268
</div>
12691269
</div>
12701270

1271-
<div class="card" id="registrationCard">
1272-
<div class="card-header p-1 m-0">
1273-
<i class="fas fa-fw fa-user-check"></i>&nbsp;Registration Settings
1274-
</div>
1275-
<div class="card-content">
1276-
<table class="table striped compact">
1277-
<thead>
1278-
<tr>
1279-
<th style="width: 70%;">Parameter</th>
1280-
<th style="width: 30%;">Status</th>
1281-
</tr>
1282-
</thead>
1283-
<tbody>
1284-
1285-
<tr>
1286-
<td class="pt-1 mt-0 pb-0 pt-0">Registered To: </td>
1287-
<td class="pt-1 mt-0 pb-0 pt-0"><span class="tally powerstatus" id="registrationCardRegistration">NOCOMM</span></td>
1288-
</tr>
1289-
1290-
</tbody>
1291-
</table>
1292-
</div>
1293-
</div>
1294-
1295-
1296-
1297-
12981271
</div>
12991272
<div class="cell p-0 m-0">
13001273

@@ -1389,7 +1362,7 @@
13891362
<div class="card-header p-1 m-0">
13901363
<i class="fas fa-fw fa-tty"></i>&nbsp;Communications
13911364
</div>
1392-
<div class="card-content" style="height: calc(100vh - 530px); min-height: 90px; overflow-x: auto;">
1365+
<div class="card-content" style="min-height: 90px; overflow-x: auto;">
13931366
<table class="table striped compact">
13941367
<thead>
13951368
<tr>
@@ -1966,8 +1939,6 @@
19661939

19671940
<script type="text/javascript" src="wizards/surfacing/surfacing.js"></script>
19681941

1969-
<script type="text/javascript" src="wizards/mailinglist/mailinglist.js"></script>
1970-
19711942
<!-- <script type="text/javascript" src="wizards/flashingtool/grbl-flashing.js"></script> -->
19721943
<script type="text/javascript" src="wizards/flashingtool2/flashingtool.js"></script>
19731944

@@ -1982,4 +1953,4 @@
19821953
<script src="/lib/furcanIconPicker/iconpicker-1.5.0.js"></script>
19831954

19841955
</html>
1985-
<!-- -->
1956+
<!-- -->

app/js/updates.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ function checkUpdate() {
3333
}, 1000);
3434
} else {
3535
printLog("<span class='fg-darkRed'>[ update ] </span><span class='fg-green'>You are already running OpenBuilds CONTROL " + currentVersion + "</span>")
36-
setTimeout(function() {
37-
checkUpdate()
38-
}, 60 * 60 * 1000) // 60 mins
36+
// setTimeout(function() {
37+
// checkUpdate()
38+
// }, 60 * 60 * 1000) // 60 mins
39+
// disable regular check - once on startup is enough
3940
}
4041
});
4142
}, 1000)
@@ -60,4 +61,4 @@ function cancelTimer() {
6061
time = -1
6162
$('#countdown').html('cancelled')
6263
printLog("<span class='fg-darkRed'>[ Update Deferred! ] </span><span class='fg-darkGray'>No problem, we will ask you again next time</span>")
63-
}
64+
}

app/wizards/flashingtool2/flashingtool.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ function flashToolBoard(device) {
4848
}
4949

5050
function openFlashingTool() {
51+
52+
selectedControllerType = 'blackboxx32'
53+
5154
var template = `
5255
<ul data-role="tabs" data-expand="true">
5356
<li><a href="#" onclick="flashToolBoard('blackboxx32');"><img src="/wizards/flashingtool2/img/bbx32-icon.png" height="32"> <b>BlackBox X32</b></a></li>

app/wizards/mailinglist/mailinglist.js renamed to app/wizards/mailinglist_unused/mailinglist_unused.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,4 @@ function signUpMailinglist() {
211211
}
212212
});
213213

214-
}
214+
}

0 commit comments

Comments
 (0)