Version 1 for Q

This commit is contained in:
Peter D. Gray 2024-02-07 09:51:01 -05:00
parent 30480f084a
commit bc686ef1ad
No known key found for this signature in database
GPG Key ID: A2DCD558C2BE5D7C
4 changed files with 11 additions and 3 deletions

View File

@ -21,3 +21,11 @@
- detects Google Auth app export QR and provides title
- detects OTP 2FA (RFC ?) QR code and provides nice title
- detects URL in QR, and uses domain name as title
# Releases
## 1.0.0 - 2024-02-07
- first test-only release to production; not planning to ship to customers

View File

@ -2001,7 +2001,7 @@ async def show_version(*a):
# this UID is exposed over NFC interface, but only when enabled and in active use
if NFC:
serial += '\n\nNFC UID:\n' + NFC.get_uid().replace(':', '')
serial += '\n\nNFC UID:\n ' + NFC.get_uid().replace(':', '')
hw = version.hw_label
if not version.has_nfc:

View File

@ -379,9 +379,9 @@ NormalSystem = [
# Shown until unit is put into a numbered bag
FactoryMenu = [
MenuItem('Version: ' + version.get_mpy_version()[1], f=show_version),
MenuItem('Bag Me Now', f=scan_and_bag),
MenuItem('DFU Upgrade', f=start_dfu, shortcut='u'),
MenuItem('Show Version', f=show_version),
MenuItem('Ship W/O Bag', f=ship_wo_bag),
MenuItem("Debug Functions", menu=DebugFunctionsMenu, shortcut='f'),
MenuItem("Perform Selftest", f=start_selftest, shortcut='s'),

View File

@ -1,4 +1,4 @@
# Our version for this release.
VERSION_STRING = 5.2.1Q
VERSION_STRING = 1.0.0Q