Skip to content

Commit 0b5100d

Browse files
committed
0.5.9.1 to 0.5.9.2
1 parent e2455bb commit 0b5100d

File tree

41 files changed

+36301
-22987
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+36301
-22987
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Add the following `build_flags` and adjust to your app, if needed:
241241
```ini
242242
-D BUILD_TARGET=\"$PIOENV\"
243243
-D APP_NAME=\"ESP32-Sveltekit\" ; Must only contain characters from [a-zA-Z0-9-_] as this is converted into a filename
244-
-D APP_VERSION=\"0.5.9\" ; semver compatible version string
244+
-D APP_VERSION=\"0.5.9.2\" ; semver compatible version string
245245
-D EMBED_WWW
246246
```
247247

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ MoonLight functionality is aimed at running effects on multiple lights. It's pri
1515

1616
MoonLight is a [MoonModules.org](https://moonmodules.org) project. MoonModules is a group of lighting enthusiasts who also made WLED MM and contribute to WLED. Where WLED (MM) is aimed at 1D and 2D effects and LED setups, MoonLight is build to support 2D and 3D effects and multiple light setups. MoonLight has been built from scratch using the experience gained working on WLED (MM).
1717

18-
* Latest release can be found [here](https://github.com/MoonModules/MoonLight/releases). Release v0.5.9.1 is a developer release and works towards MoonLight 0.6.0 which is aimed at end users and is expected in September 2025. Containing presets controller pad, user friendly installer, physical and virtual driver for large displays, WLED audio sync and more.
18+
* Latest release can be found [here](https://github.com/MoonModules/MoonLight/releases). Release v0.5.9.2 is a developer release and works towards MoonLight 0.6.0 which is aimed at end users and is expected in September 2025. Containing presets controller pad, user friendly installer, physical and virtual driver for large displays, WLED audio sync and more.
1919
* Progress can be tracked in the [Kanban board](https://github.com/users/MoonModules/projects/2/)
2020
* Get started [here](https://moonmodules.org/MoonLight/gettingstarted/overview/)
2121
* Follow us on [Discord/MoonLight](https://discord.gg/TC8NSUSCdV) or [Reddit](https://reddit.com/r/moonmodules).

docs/develop/customizingsveltekit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This is a checklist, More info on most of the items can be found in the ESP32-Sv
1515
* FACTORY_NTP_TIME_ZONE_LABEL=\"Europe/Berlin\"
1616
* package.json
1717
* name = "{custom}"
18-
* version: "0.5.9",
18+
* version: "0.5.9.2",
1919
* intrerface/source/lib/assets/logo.png
2020
* replace logo
2121
* interface/source/routes/+layout.ts

docs/develop/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,10 @@ Firmware binaries come in 2 flavours: including boot and partition (merged) and
232232
!!! tip "flash firmware using esptool"
233233
* [>_] in the statusbar of vscode
234234
```
235-
esptool --port /dev/cu.usbmodem11201 write-flash 0x0 ./build/merged/MoonLight_esp32-s3-devkitc-1-n16r8v_0-5-9-1_webflash.bin
235+
esptool --port /dev/cu.usbmodem11201 write-flash 0x0 ./build/merged/MoonLight_esp32-s3-devkitc-1-n16r8v_0-5-9-2_webflash.bin
236236
```
237237
* optionally add erase-flash before write-flash
238-
* use ./build/release/MoonLight_esp32-s3-devkitc-1-n16r8v_0-5-9-1.bin and address 0x10000 to flash only the MoonLight partition
238+
* use ./build/release/MoonLight_esp32-s3-devkitc-1-n16r8v_0-5-9-2.bin and address 0x10000 to flash only the MoonLight partition
239239

240240
## Troubleshooting
241241
* In general: first close and restart VSCode and run ☑️ or ➡️ again.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ hide:
230230
## 📈 Release Roadmap - User-Focused Development
231231

232232
!!! info "Current Status"
233-
**Version 0.5.9.1** - Developer preview available now
233+
**Version 0.5.9.2** - Developer preview available now
234234

235235
**Version 0.6.0** - **October 2025** - The user-friendly baseline release
236236

docs/statefulservice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ By enabling `FT_DOWNLOAD_FIRMWARE=1` in [features.ini](https://github.com/theeli
601601
```ini
602602
-D BUILD_TARGET="$PIOENV"
603603
-D APP_NAME=\"ESP32-Sveltekit\" ; Must only contain characters from [a-zA-Z0-9-_] as this is converted into a filename
604-
-D APP_VERSION=\"0.5.9\" ; semver compatible version string
604+
-D APP_VERSION=\"0.5.9.2\" ; semver compatible version string
605605
```
606606

607607
A build script copies the firmware binary files for all build environment to `build/firmware`. It renames them into `{APP_NAME}_{$PIOENV}_{APP_VERSION}.bin`. It also creates a MD5 checksum file for verification during the OTA process. These files can be used as attachment on the GitHub release pages.

docs/structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Also you must make use of couple build flags in [platformio.ini](https://github.
9898
```ini
9999
-D BUILD_TARGET=\"$PIOENV\"
100100
-D APP_NAME=\"ESP32-Sveltekit\" ; Must only contain characters from [a-zA-Z0-9-_] as this is converted into a filename
101-
-D APP_VERSION=\"0.5.9\" ; semver compatible version string
101+
-D APP_VERSION=\"0.5.9.2\" ; semver compatible version string
102102
```
103103

104104
Out of these flags the [rename_fw.py](https://github.com/theelims/ESP32-sveltekit/blob/main/scripts/rename_fw.py) script will copy and rename the firmware binary to `/build/firmware/{APP_NAME}_{$PIOENV}_{APP_VERSION}.bin`. In addition it will also create a corresponding MD5 checksum file. These files are ready to be uploaded to the Github release page without any further changes. The frontend searches for the firmware binary which matches the build environment and uses this as the update link. This allows you to serve different build targets (e.g. different boards) from the same release page.

docs/system/update.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@
55
This module supports Over the Air Updates (OTA).
66
There are 2 ways to update the firmware in this module:
77

8-
<img width="362" src="https://github.com/user-attachments/assets/cf72875f-02cf-4c78-97a0-56b2a1723d71" />
98
* Using GitHub releases
109

11-
* List of firmware releases is showed here
12-
* Select one of the releases to install. In general it is advised to install the most recent version.
13-
* If there is a new release, the app will notify it's availability.
14-
* See here for details on releases: [releases](https://github.com/MoonModules/MoonLight/releases)
10+
* List of firmware releases is showed here
11+
* Select one of the releases to install. In general it is advised to install the most recent version.
12+
* If there is a new release, the app will notify it's availability.
13+
* See here for details on releases: [releases](https://github.com/MoonModules/MoonLight/releases)
14+
15+
<img width="362" src="https://github.com/user-attachments/assets/cf72875f-02cf-4c78-97a0-56b2a1723d71" />
1516

1617
* Manually via Upload
18+
1719
* Select choose file, Press Upload if asked for Are you sure?.
1820

1921
When starting the update, a progress indicator is shown, upon completion the device will restart with the new firmware.

firmware/installer/MoonLight_esp32-c3-devkitm-1_0-5-9-1_webflash.bin renamed to firmware/installer/MoonLight_esp32-c3-devkitm-1_0-5-9-2_webflash.bin

2.2 MB
Binary file not shown.

firmware/installer/MoonLight_esp32-c3-supermini_0-5-9-1_webflash.bin renamed to firmware/installer/MoonLight_esp32-c3-supermini_0-5-9-2_webflash.bin

2.2 MB
Binary file not shown.

0 commit comments

Comments
 (0)