diff --git a/Makefile b/Makefile index 5d8854e..4450e18 100755 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ DATA := data INCLUDES := include include/ui include/data include/install include/nx include/nx/ipc include/util include/Plutonium/Plutonium/Output-switch/include APP_TITLE := Awoo Installer APP_AUTHOR := Huntereb -APP_VERSION := 0.0.1 +APP_VERSION := 1.0.0 ROMFS := romfs #--------------------------------------------------------------------------------- diff --git a/icon.jpg b/icon.jpg new file mode 100755 index 0000000..f0f26de Binary files /dev/null and b/icon.jpg differ diff --git a/source/sigInstall.cpp b/source/sigInstall.cpp index 97c2e33..744838c 100755 --- a/source/sigInstall.cpp +++ b/source/sigInstall.cpp @@ -13,7 +13,7 @@ namespace sig { try { std::string patchesVersion = inst::util::readTextFromFile("sdmc:/atmosphere/exefs_patches/es_patches/patches.txt"); std::string versionText = ""; - if (patchesVersion != "") versionText = "You currently have signature patches installed for HOS version " + patchesVersion; + if (patchesVersion != "") versionText = "\nYou currently have signature patches installed for HOS version " + patchesVersion; int ourResult = inst::ui::mainApp->CreateShowDialog("Install signature patches?", "Signature patches are required for installing and playing NSP contents." + versionText, {"Install", "Uninstall", "Cancel"}, true); if (ourResult == 0) { if (!inst::util::copyFile("sdmc:/bootloader/patches.ini", inst::config::appDir + "/patches.ini.old")) { @@ -31,8 +31,8 @@ namespace sig { if (didExtract) { patchesVersion = inst::util::readTextFromFile("sdmc:/atmosphere/exefs_patches/es_patches/patches.txt"); versionText = ""; - if (patchesVersion != "") versionText = " Your signature patches have been updated for HOS version " + patchesVersion + "!"; - inst::ui::mainApp->CreateShowDialog("Install complete!" + versionText, "Restart your console to apply!", {"OK"}, true); + if (patchesVersion != "") versionText = "Your signature patches have been updated for HOS version " + patchesVersion + "! "; + inst::ui::mainApp->CreateShowDialog("Install complete!", versionText + "Restart your console to apply!", {"OK"}, true); } else { inst::ui::mainApp->CreateShowDialog("Could not extract files!", "", {"OK"}, true);