Skip to content

Commit 90646e4

Browse files
committed
Merge branch 'dev' of https://github.com/Stefal/rtkbase into dev
2 parents 8d6ddb3 + 35e319b commit 90646e4

File tree

5 files changed

+2
-1
lines changed

5 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- GUI -> Settings: Added a button to detect and/or configure the gnss receiver. #70
88
- GUI -> Settings: Added a button to show/hide the Ntrip passwords. Thanks to @GwnDaan #208
99
- GUI -> Settings: Added Gnss receiver informations (Model and firmware release).
10+
- GUI -> Settings: Alert when user wants to leave the page with unsaved settings. #235
1011
- GUI -> Status: Added tooltip on the blue pin to explain that it's a coarse location. #247
1112
- GUI -> Status: Added an alert if the main service isn't active.
1213
- GUI -> Logs: Added 3 more Rinex presets, and modified rinex window layout. #43 #134 #190 #200

tools/bin/rtklib_b34g/armhf/convbin

12.5 KB
Binary file not shown.

tools/bin/rtklib_b34g/armhf/rtkrcv

23.1 KB
Binary file not shown.

tools/bin/rtklib_b34g/armhf/str2str

7.64 KB
Binary file not shown.

web_app/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def check_update(source_url = None, current_release = None, prerelease=rtkbaseco
261261
new_release = {}
262262
source_url = source_url if source_url is not None else "https://api.github.com/repos/stefal/rtkbase/releases"
263263
current_release = current_release if current_release is not None else rtkbaseconfig.get("general", "version").strip("v")
264-
current_release = current_release.replace("-beta", "").replace("-alpha", "").replace("-rc", "")
264+
current_release = current_release.split("-beta", 1)[0].split("-alpha", 1)[0].split("-rc", 1)[0].split("b", 1)[0]
265265

266266
try:
267267
response = requests.get(source_url)

0 commit comments

Comments
 (0)