Skip to content

Commit a8960eb

Browse files
authored
Merge pull request #143 from madgrizzle/master
Update to latest stable from madgrizzle repo
2 parents d4c5745 + 6720caa commit a8960eb

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

Connection/serialPortThread.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ def managePause(self, line):
177177
self.data.uploadFlag = -1
178178
self.data.pausedUnits = self.data.units
179179
self.data.ui_queue1.put("Action", "setAsResume", "")
180+
# clear machine out of pause mode
181+
self.data.quick_queue.put("~")
180182

181183
def manageToolChange(self, line):
182184
if line.find("M6 ") != -1 or line.find("M06") != -1:

DataStructures/data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Data:
3838
Version Updater
3939
'''
4040
lastChecked = -1
41-
pyInstallCurrentVersion = 0.9335
41+
pyInstallCurrentVersion = 0.94
4242
pyInstallUpdateAvailable = False
4343
pyInstallUpdateBrowserUrl = ""
4444
pyInstallUpdateVersion = 0
@@ -187,7 +187,7 @@ class Data:
187187
"""
188188
bufferSize = 127
189189

190-
pausedzval = 0.0
190+
pausedzval = None
191191
pausedPositioningMode = 0
192192
pausedUnits = "INCHES"
193193

HelpManager/helpManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def checkForUpdatedHelp(self):
2727
def getHelpPages(self):
2828
return None
2929
g = Github()
30-
self.repo = g.get_repo("madgrizzle/WebControl")
30+
self.repo = g.get_repo("WebControlCNC/WebControl")
3131
contents = self.repo.get_contents("docs")
3232
pages = []
3333
while contents:

ReleaseManager/releaseManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def checkForLatestPyRelease(self):
4141
try:
4242
enableExperimental = self.data.config.getValue("WebControl Settings", "experimentalReleases")
4343
g = Github()
44-
repo = g.get_repo("madgrizzle/WebControl")
44+
repo = g.get_repo("WebControlCNC/WebControl")
4545
self.releases = repo.get_releases()
4646
latestVersionGithub = 0
4747
self.latestRelease = None

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import os
88
import sys
99

10-
monkey.patch_all()
1110

11+
monkey.patch_all()
1212

1313
import schedule
1414
import time

templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</a>
8181
<div class="dropdown-menu" aria-labelledby="navbarDropdown4">
8282
<a class="dropdown-item" href="#" onclick="requestPage('gettingStarted');">Getting Started</a>
83-
<a class="dropdown-item" href="https://madgrizzle.github.io/WebControl/" target="_blank">Online Help</a>
83+
<a class="dropdown-item" href="https://webcontrolcnc.github.io/WebControl/" target="_blank">Online Help</a>
8484
<a class="dropdown-item" href="#" onclick="requestPage('help');">Offline Help</a>
8585
<a class="dropdown-item" href="#" onclick="requestPage('about');">About</a>
8686
<span id="updateBadge" class="badge badge-pill badge-primary" style="float:left;margin-bottom:-10px;"></span>

0 commit comments

Comments
 (0)