Skip to content

Commit

Permalink
Minor fixes, fix Makefile again
Browse files Browse the repository at this point in the history
  • Loading branch information
XorTroll committed Jul 4, 2024
1 parent cc7de41 commit 6bf5326
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ umenu: arc pu
@build_romfs projects/uMenu/romfs SdOut/ulaunch/bin/uMenu/romfs.bin

umanager: arc pu
@$(MAKE) -C libs/Plutonium/
@$(MAKE) -C projects/uManager
@mkdir -p SdOut/ulaunch/lang/uManager
@mkdir -p SdOut/switch
@cp projects/uManager/uManager.nro SdOut/switch/uManager.nro

uscreen:
@cd projects/uScreen && mvn package
Expand Down
Binary file modified docs/udesigner.data
Binary file not shown.
12 changes: 6 additions & 6 deletions docs/udesigner.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if (ENVIRONMENT_IS_NODE) {

// --pre-jses are emitted after the Module integration code, so that they can
// refer to Module (if they choose; they can also define Module)
// include: /tmp/tmpcdp3wo0a.js
// include: /tmp/tmptdtwqfll.js

if (!Module.expectedDataFileDownloads) {
Module.expectedDataFileDownloads = 0;
Expand Down Expand Up @@ -220,21 +220,21 @@ Module['FS_createPath']("/", "assets", true, true);

})();

// end include: /tmp/tmpcdp3wo0a.js
// include: /tmp/tmpuzehj2xx.js
// end include: /tmp/tmptdtwqfll.js
// include: /tmp/tmpyzue98uc.js

// All the pre-js content up to here must remain later on, we need to run
// it.
if (Module['$ww'] || (typeof ENVIRONMENT_IS_PTHREAD != 'undefined' && ENVIRONMENT_IS_PTHREAD)) Module['preRun'] = [];
var necessaryPreJSTasks = Module['preRun'].slice();
// end include: /tmp/tmpuzehj2xx.js
// include: /tmp/tmpdd5eooui.js
// end include: /tmp/tmpyzue98uc.js
// include: /tmp/tmp7emfte1w.js

if (!Module['preRun']) throw 'Module.preRun should exist because file support used it; did a pre-js delete it?';
necessaryPreJSTasks.forEach((task) => {
if (Module['preRun'].indexOf(task) < 0) throw 'All preRun tasks that exist before user pre-js code should remain after; did you replace Module or modify Module.preRun?';
});
// end include: /tmp/tmpdd5eooui.js
// end include: /tmp/tmp7emfte1w.js


// Sometimes an existing Module object exists with properties
Expand Down
2 changes: 1 addition & 1 deletion projects/uManager/source/ul/man/ui/ui_MainMenuLayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ namespace ul::man::ui {
}

const auto last_ver = Version::FromString(last_id);
const auto cur_ver = Version::FromString("0.3.1");
const auto cur_ver = Version::FromString(UL_VERSION);
if(last_ver.IsEqual(cur_ver)) {
g_MainApplication->CreateShowDialog(GetLanguageString("update_title"), GetLanguageString("update_equal"), { GetLanguageString("ok") }, true);
}
Expand Down
3 changes: 2 additions & 1 deletion projects/uMenu/source/ul/menu/ui/ui_ThemesMenuLayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ namespace ul::menu::ui {
}
else {
std::string theme_conf_msg = selected_theme.manifest.name + "\n";
theme_conf_msg += selected_theme.manifest.release + ", " + selected_theme.manifest.author + "\n\n";
theme_conf_msg += selected_theme.manifest.description + "\n";
theme_conf_msg += "(" + selected_theme.manifest.release + ", " + selected_theme.manifest.author + ")\n\n";
theme_conf_msg += GetLanguageString("theme_set_conf");

const auto option = g_MenuApplication->DisplayDialog(selected_theme.manifest.name, theme_conf_msg, { GetLanguageString("yes"), GetLanguageString("cancel") }, true, this->loaded_theme_icons.at(idx));
Expand Down

0 comments on commit 6bf5326

Please sign in to comment.