Increment version numbers

This commit is contained in:
Thomas Farstrike
2025-06-17 18:20:20 +02:00
parent 1fb5cf6970
commit da83bbadf1
6 changed files with 18 additions and 14 deletions
+6 -2
View File
@@ -1,9 +1,13 @@
0.0.6
=====
- Tweak button size in drawer and add "Settings" button
- Scale button size in drawer for bigger screens
- Show "Brightness" text in drawer
- Save and restore "Brightness" setting
- Add builtin "Settings" app with settings for Light/Dark Theme, Theme Color, Restart to Bootloader
- Add "Settings" button to drawer that opens settings app
- Save and restore "Brightness" setting
- AppStore: speed up app installs
- Camera: scale camera image to fit screen on bigger displays
- Camera: show decoded result on-display if QR decoded
0.0.5
=====
+2 -2
View File
@@ -109,10 +109,10 @@ If you made a 'devbuild', then you probably want to install all files and apps m
Release checklist
=================
- Make sure CURRENT_OS_VERSION in main.py is incremented
- Make sure CURRENT_OS_VERSION in internal_filesystem/lib/mpos/info.py is incremented
- Make sure version numbers of apps that have been changed are incremented:
```
git diff --stat 0.0.4 # see everything that changed since tag 0.0.4
git diff --stat 0.0.4 internal_filesyste/ # see everything that changed since tag 0.0.4
git diff 0.0.4 -- internal_filesystem/apps/*/META-INF/* # list manifests that might have already had their version number incremented
git diff 0.0.4 -- internal_filesystem/builtin/apps/*/META-INF/* # list manifests that might have already had their version number incremented
```
@@ -3,10 +3,10 @@
"publisher": "MicroPythonOS",
"short_description": "Image Viewer",
"long_description": "Opens and shows images on the display.",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/icons/com.micropythonos.imageview_0.0.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/mpks/com.micropythonos.imageview_0.0.1.mpk",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/icons/com.micropythonos.imageview_0.0.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/mpks/com.micropythonos.imageview_0.0.2.mpk",
"fullname": "com.micropythonos.imageview",
"version": "0.0.1",
"version": "0.0.2",
"category": "graphics",
"activities": [
{
@@ -3,10 +3,10 @@
"publisher": "MicroPythonOS",
"short_description": "Store for App(lication)s",
"long_description": "",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/icons/com.micropythonos.appstore_0.0.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/mpks/com.micropythonos.appstore_0.0.3.mpk",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/icons/com.micropythonos.appstore_0.0.4_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/mpks/com.micropythonos.appstore_0.0.4.mpk",
"fullname": "com.micropythonos.appstore",
"version": "0.0.3",
"version": "0.0.4",
"category": "appstore",
"activities": [
{
@@ -3,10 +3,10 @@
"publisher": "MicroPythonOS",
"short_description": "WiFi Network Configuration",
"long_description": "Scans for wireless networks, shows a list of SSIDs, allows for password entry, and connecting.",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/icons/com.micropythonos.wifi_0.0.4_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/mpks/com.micropythonos.wifi_0.0.4.mpk",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/icons/com.micropythonos.wifi_0.0.5_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.wifi/mpks/com.micropythonos.wifi_0.0.5.mpk",
"fullname": "com.micropythonos.wifi",
"version": "0.0.4",
"version": "0.0.5",
"category": "networking",
"activities": [
{
+1 -1
View File
@@ -1 +1 @@
CURRENT_OS_VERSION = "0.0.5"
CURRENT_OS_VERSION = "0.0.6"