Towards v1.0.0Q!

This commit is contained in:
Peter D. Gray 2024-03-10 11:33:09 -04:00
parent ce560b2bb2
commit 2d8e148e95
No known key found for this signature in database
GPG Key ID: A2DCD558C2BE5D7C
3 changed files with 6 additions and 7 deletions

View File

@ -81,8 +81,11 @@
- Many more test cases.
## 0.0.9Q - 2024-03-??
## 1.0.0Q - 2024-03-10
- Bugfix: Yikes when saving words imported by QR.
- Bump major verison number, remove BETA marking.
- Finalize version 1.0.4 bootrom (no real changes).
- Bugfix: Yikes when saving seed words imported by QR.
- Bugfix: Crash w/ blank screen sometimes, either on power-up or after upgrading firmware.
- Testing: Accelerate internal testing by reviving "headless" mode of simulator.

View File

@ -84,8 +84,6 @@ def get_sys_status():
rv['edge'] = 1
elif is_devmode:
rv['devmode'] = 1
else:
rv['beta'] = 1 # DELME
return rv
@ -203,8 +201,6 @@ class Display:
self.image(x, 0, 'edge')
elif 'devmode' in kws:
self.image(x+5, 0, 'devmode')
elif 'beta' in kws:
self.image(x+2, 0, 'beta')
x = 8
for dx, meta in [(7, 'shift'), (37, 'symbol'), (58, 'caps')]:

View File

@ -1,5 +1,5 @@
# Our version for this release.
# - caution, some bootroms (Q < 1.0.3, all mk4) will not accept version < 3.0.0
VERSION_STRING = 0.0.9Q
VERSION_STRING = 1.0.0Q