Skip to content

Commit 581d6a6

Browse files
Update changelog, disable comments, add wifi config to install script
1 parent 5867a7e commit 581d6a6

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
=====
33
- AudioFlinger: optimize WAV volume scaling for speed and immediately set volume
44
- API: add TaskManager that wraps asyncio
5+
- AppStore app: eliminate all thread by using TaskManager
6+
- AppStore app: add support for BadgeHub backend
7+
58

69
0.5.1
710
=====

internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ async def download_url(self, url, outfile=None):
210210
print("ERROR: failed to download chunk, even with retries!")
211211
return False
212212
else:
213-
print(f"Downloaded chunk: {chunk}")
213+
#print(f"Downloaded chunk: {chunk}")
214214
if chunk:
215215
#print("writing chunk...")
216216
fd.write(chunk)

scripts/install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ $mpremote fs cp -r builtin :/
6666
#$mpremote fs cp -r data :/
6767
#$mpremote fs cp -r data/images :/data/
6868

69+
$mpremote fs mkdir :/data
70+
$mpremote fs mkdir :/data/com.micropythonos.system.wifiservice
71+
$mpremote fs cp ../internal_filesystem_excluded/data/com.micropythonos.system.wifiservice/config.json :/data/com.micropythonos.system.wifiservice/
72+
6973
popd
7074

7175
# Install test infrastructure (for running ondevice tests)

0 commit comments

Comments
 (0)