Version 1 for Q
This commit is contained in:
parent
30480f084a
commit
bc686ef1ad
@ -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
|
||||
|
||||
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -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'),
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
|
||||
# Our version for this release.
|
||||
VERSION_STRING = 5.2.1Q
|
||||
VERSION_STRING = 1.0.0Q
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user