From 9f478404f647a736d8803567222260f2c91201a9 Mon Sep 17 00:00:00 2001 From: robshape Date: Sun, 23 Apr 2023 18:34:27 +0200 Subject: [PATCH] build: Replace some visible MinUI strings --- README.md | 6 ++---- makefile | 2 +- src/minarch/minarch.c | 2 +- src/minui/minui.c | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1bfca07..3236660 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ FinUI is a fork of [MinUI](https://github.com/shauninman/union-minui). MinUI is focused custom launcher for the Anbernic RG35XX. FinUI adds additional features on top of MinUI. -![MinUI](./github/minui-menu-gbc.png) +![FinUI](./github/minui-menu-gbc.png) ## Features @@ -33,8 +33,6 @@ top of MinUI. - Streamlined emulator frontend (minarch + libretro cores) -You can [grab the latest version here](https://github.com/shauninman/union-minui/releases). - ### Additional FinUI features - Add to Favorites @@ -69,7 +67,7 @@ Run `./start-toolchain.sh` and then `make all` in the Docker container shell. - ~~Refactor Tools to Settings~~ - ~~Add to Favorites~~ - ~~Adjust battery capacity readings (2100 mAh, 2600 mAh, 3500 mAh)~~ -- Update visible MinUI strings and boot logo (show that it is the FinUI fork) +- ~~Update visible MinUI strings (show that it is the FinUI fork)~~ - Release using GitHub Actions - Adjust overclocking and CPU usage (to maximize battery life) - Improve battery capacity reading accuracy diff --git a/makefile b/makefile index 2ab1eee..7abdb9c 100644 --- a/makefile +++ b/makefile @@ -15,7 +15,7 @@ endif BUILD_HASH!=git rev-parse --short HEAD RELEASE_TIME!=date +%Y%m%d -RELEASE_BASE=MinUI-$(RELEASE_TIME)b +RELEASE_BASE=FinUI-$(RELEASE_TIME)b RELEASE_DOT!=find ./releases/. -regex ".*/$(RELEASE_BASE)-[0-9]+-base\.zip" -printf '.' | wc -m RELEASE_NAME=$(RELEASE_BASE)-$(RELEASE_DOT) diff --git a/src/minarch/minarch.c b/src/minarch/minarch.c index 8973628..d7c4dc7 100644 --- a/src/minarch/minarch.c +++ b/src/minarch/minarch.c @@ -3406,7 +3406,7 @@ static int OptionSaveChanges_openMenu(MenuList* list, int i) { static MenuList options_menu = { .type = MENU_LIST, .items = (MenuItem[]) { - {"Frontend", "MinUI (" BUILD_DATE " " BUILD_HASH ")",.on_confirm=OptionFrontend_openMenu}, + {"Frontend", "FinUI (" BUILD_DATE " " BUILD_HASH ")",.on_confirm=OptionFrontend_openMenu}, {"Emulator",.on_confirm=OptionEmulator_openMenu}, {"Controls",.on_confirm=OptionControls_openMenu}, {"Shortcuts",.on_confirm=OptionShortcuts_openMenu}, diff --git a/src/minui/minui.c b/src/minui/minui.c index a71cc07..c146a11 100644 --- a/src/minui/minui.c +++ b/src/minui/minui.c @@ -1284,7 +1284,7 @@ static void Menu_quit(void) { int main (int argc, char *argv[]) { if (autoResume()) return 0; // nothing to do - LOG_info("MinUI\n"); + LOG_info("FinUI\n"); InitSettings(); SDL_Surface* screen = GFX_init(MODE_MAIN);