You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
AppStore: simplify
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
||||
=====
|
||||
- AudioFlinger: optimize WAV volume scaling for speed and immediately set volume
|
||||
- AudioFlinger: add support for I2S microphone recording to WAV
|
||||
- AppStore app: eliminate all thread by using TaskManager
|
||||
- AppStore app: eliminate all threads by using TaskManager
|
||||
- AppStore app: add support for BadgeHub backend
|
||||
- OSUpdate app: show download speed
|
||||
- WiFi app: new "Add network" functionality for out-of-range or hidden networks
|
||||
|
||||
@@ -233,9 +233,7 @@ class AppStore(Activity):
|
||||
print(f"Could not get app_metadata object from version object: {e}")
|
||||
return
|
||||
try:
|
||||
author = app_metadata.get("author")
|
||||
print("Using author as publisher because that's all the backend supports...")
|
||||
app_obj.publisher = author
|
||||
app_obj.publisher = app_metadata.get("author")
|
||||
except Exception as e:
|
||||
print(f"Could not get author from version object: {e}")
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user