Skip to content

Commit 29b3257

Browse files
committed
Package dark theme as an optional download
1 parent 36c63ca commit 29b3257

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/nightly.yml

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
zip -r ../AOS_R4iLS.zip *
6060
cd ../ex4ds
6161
zip -r ../AOS_EX4DS.zip *
62+
# Package dark theme
63+
cd ../aos_dark_theme
64+
zip -r ../AOS_Dark_Theme.zip *
6265
6366
- name: Prepare for publishing
6467
run: |

.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ jobs:
5656
zip -r ../AOS_R4iLS.zip *
5757
cd ../ex4ds
5858
zip -r ../AOS_EX4DS.zip *
59+
# Package dark theme
60+
cd ../aos_dark_theme
61+
zip -r ../AOS_Dark_Theme.zip *
5962
6063
- name: Prepare for publishing
6164
run: |
@@ -76,4 +79,5 @@ jobs:
7679
out/AOS_Gateway.zip
7780
out/AOS_R4iLS.zip
7881
out/AOS_EX4DS.zip
82+
out/AOS_Dark_Theme.zip
7983
README.md

build.sh

100644100755
+8
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,11 @@ r4denc -k 0x4002 kernel/wood_r4xx.nds out/ex4ds/wood.dat
7575

7676
# Extra _dsmenu.dat for EX4 soft-reset
7777
cp out/ex4ds/_ds_menu.dat out/ex4ds/_dsmenu.dat
78+
79+
# package optional dark theme
80+
mkdir out/aos_dark_theme
81+
cd aos_dark_theme
82+
zip -Z store -r ../out/aos_dark_theme/theme.res {calendar,icon,icons.bmp,logo.bmp,version}
83+
cp setting.ini ../out/aos_dark_theme/setting.ini
84+
cd ..
85+

0 commit comments

Comments
 (0)