Skip to content

Commit 7fd4c48

Browse files
committed
make check update opt-in
1 parent 131a1bc commit 7fd4c48

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### RELEASE 1.6.10
44

55
1. Minor enhancements to UBX Config Dialog confirmation signalling. Clarify 'X' bitfields are little endian.
6+
1. Make 'Check for update on startup' 'opt-in' rather than 'opt-out'. Setting available via About dialog.
67

78
### RELEASE 1.6.9
89

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ dependencies = [
5555
"pygnssutils>=1.2.1",
5656
"pyunigps>=1.0.0",
5757
"pynmeagps>=1.1.4",
58+
"pyubx2>=1.3.1",
5859
]
5960

6061
[project.scripts]

src/pygpsclient/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __init__(self, app):
107107
"showsettings_b": 1,
108108
"docksettings_b": 1,
109109
**self.widget_config,
110-
"checkforupdate_b": 1,
110+
"checkforupdate_b": 0,
111111
"transient_dialog_b": 1, # whether pop-up dialogs are on top of main app window
112112
"resizeable_dialog_b": 0, # whether pop-up dialogs are all resizeable
113113
"guiupdateinterval_f": GUI_UPDATE_INTERVAL, # GUI widget update interval in seconds

0 commit comments

Comments
 (0)