Skip to content

Commit da83bba

Browse files
Increment version numbers
1 parent 1fb5cf6 commit da83bba

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
0.0.6
22
=====
3-
- Tweak button size in drawer and add "Settings" button
3+
- Scale button size in drawer for bigger screens
44
- Show "Brightness" text in drawer
5-
- Save and restore "Brightness" setting
65
- Add builtin "Settings" app with settings for Light/Dark Theme, Theme Color, Restart to Bootloader
6+
- Add "Settings" button to drawer that opens settings app
7+
- Save and restore "Brightness" setting
8+
- AppStore: speed up app installs
9+
- Camera: scale camera image to fit screen on bigger displays
10+
- Camera: show decoded result on-display if QR decoded
711

812
0.0.5
913
=====

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ If you made a 'devbuild', then you probably want to install all files and apps m
109109

110110
Release checklist
111111
=================
112-
- Make sure CURRENT_OS_VERSION in main.py is incremented
112+
- Make sure CURRENT_OS_VERSION in internal_filesystem/lib/mpos/info.py is incremented
113113
- Make sure version numbers of apps that have been changed are incremented:
114114
```
115-
git diff --stat 0.0.4 # see everything that changed since tag 0.0.4
115+
git diff --stat 0.0.4 internal_filesyste/ # see everything that changed since tag 0.0.4
116116
git diff 0.0.4 -- internal_filesystem/apps/*/META-INF/* # list manifests that might have already had their version number incremented
117117
git diff 0.0.4 -- internal_filesystem/builtin/apps/*/META-INF/* # list manifests that might have already had their version number incremented
118118
```

internal_filesystem/apps/com.micropythonos.imageview/META-INF/MANIFEST.JSON

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"publisher": "MicroPythonOS",
44
"short_description": "Image Viewer",
55
"long_description": "Opens and shows images on the display.",
6-
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/icons/com.micropythonos.imageview_0.0.1_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/mpks/com.micropythonos.imageview_0.0.1.mpk",
6+
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/icons/com.micropythonos.imageview_0.0.2_64x64.png",
7+
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/mpks/com.micropythonos.imageview_0.0.2.mpk",
88
"fullname": "com.micropythonos.imageview",
9-
"version": "0.0.1",
9+
"version": "0.0.2",
1010
"category": "graphics",
1111
"activities": [
1212
{

internal_filesystem/builtin/apps/com.micropythonos.appstore/META-INF/MANIFEST.JSON

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"publisher": "MicroPythonOS",
44
"short_description": "Store for App(lication)s",
55
"long_description": "",
6-
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/icons/com.micropythonos.appstore_0.0.3_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/mpks/com.micropythonos.appstore_0.0.3.mpk",
6+
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/icons/com.micropythonos.appstore_0.0.4_64x64.png",
7+
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/mpks/com.micropythonos.appstore_0.0.4.mpk",
88
"fullname": "com.micropythonos.appstore",
9-
"version": "0.0.3",
9+
"version": "0.0.4",
1010
"category": "appstore",
1111
"activities": [
1212
{

internal_filesystem/builtin/apps/com.micropythonos.wifi/META-INF/MANIFEST.JSON

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"publisher": "MicroPythonOS",
44
"short_description": "WiFi Network Configuration",
55
"long_description": "Scans for wireless networks, shows a list of SSIDs, allows for password entry, and connecting.",
6-
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/icons/com.micropythonos.wifi_0.0.4_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/mpks/com.micropythonos.wifi_0.0.4.mpk",
6+
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/icons/com.micropythonos.wifi_0.0.5_64x64.png",
7+
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/mpks/com.micropythonos.wifi_0.0.5.mpk",
88
"fullname": "com.micropythonos.wifi",
9-
"version": "0.0.4",
9+
"version": "0.0.5",
1010
"category": "networking",
1111
"activities": [
1212
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CURRENT_OS_VERSION = "0.0.5"
1+
CURRENT_OS_VERSION = "0.0.6"

0 commit comments

Comments
 (0)