From 2290939be22dab018c8f251a90eea0eea27fb26f Mon Sep 17 00:00:00 2001 From: robshape Date: Mon, 24 Apr 2023 12:40:49 +0200 Subject: [PATCH] build: Include shortcuts sheet in release --- README.md | 7 ------- makefile | 4 ++-- skeleton/BASE/SHORTCUTS.txt | 8 ++++++++ 3 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 skeleton/BASE/SHORTCUTS.txt diff --git a/README.md b/README.md index 3236660..9f8084a 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,6 @@ top of MinUI. - All extras included in default installation - Improved developer onboarding -### Shortcuts - -| Description | Shortcut | -| ---------------------------- | ---------------------------- | -| Adjust brightness | MENU + VOLUME_DOWN/VOLUME_UP | -| Add to Favorites (from menu) | SELECT | - ## Development ### Prerequisites diff --git a/makefile b/makefile index 7abdb9c..1674a7f 100644 --- a/makefile +++ b/makefile @@ -102,14 +102,14 @@ zip: cd ./build/PAYLOAD && zip -r MinUI.zip .system mv ./build/PAYLOAD/MinUI.zip ./build/BASE - cd ./build/BASE && zip -r ../../releases/$(RELEASE_NAME)-base.zip Bios Roms Saves dmenu.bin MinUI.zip README.txt INSTALL.txt + cd ./build/BASE && zip -r ../../releases/$(RELEASE_NAME)-base.zip Bios Roms Saves dmenu.bin MinUI.zip README.txt INSTALL.txt SHORTCUTS.txt cd ./build/EXTRAS && zip -r ../../releases/$(RELEASE_NAME)-extras.zip Bios Emus Roms Saves Tools README.txt rm -fr ./build/FULL mkdir ./build/FULL cp -fR ./build/BASE/* ./build/FULL/ cp -fR ./build/EXTRAS/* ./build/FULL/ - cd ./build/FULL && zip -r ../../releases/$(RELEASE_NAME)-full.zip Bios Emus Roms Saves Tools dmenu.bin MinUI.zip INSTALL.txt + cd ./build/FULL && zip -r ../../releases/$(RELEASE_NAME)-full.zip Bios Emus Roms Saves Tools dmenu.bin MinUI.zip INSTALL.txt SHORTCUTS.txt echo "$(RELEASE_NAME)" > ./build/latest.txt diff --git a/skeleton/BASE/SHORTCUTS.txt b/skeleton/BASE/SHORTCUTS.txt new file mode 100644 index 0000000..72f7e3a --- /dev/null +++ b/skeleton/BASE/SHORTCUTS.txt @@ -0,0 +1,8 @@ +############# +# Shortcuts # +############# + +| Description | Shortcut | +| ---------------------------- | ---------------------------- | +| Adjust brightness | MENU + VOLUME_DOWN/VOLUME_UP | +| Add to Favorites (from menu) | SELECT |