Change donor titles, fix sound

This commit is contained in:
XorTroll 2019-10-27 16:02:11 +01:00
parent 3500ab6cbb
commit 11ed7621f0
6 changed files with 16 additions and 15 deletions

View file

@ -13,6 +13,6 @@ namespace am
Result WebAppletStart(WebCommonConfig *web);
AppletId LibraryAppletGetId();
static constexpr AppletId QHbTargetAppletId = AppletId_miiEdit;
static constexpr AppletId QMenuAppletId = AppletId_shop;
static constexpr AppletId QHbTargetAppletId = AppletId_myPage;
static constexpr AppletId QMenuAppletId = AppletId_cabinet;
}

View file

@ -1,8 +1,8 @@
{
"name": "QHbTarget",
"title_id": "0x0100000000001009",
"title_id_range_min": "0x0100000000001009",
"title_id_range_max": "0x0100000000001009",
"title_id": "0x0100000000001013",
"title_id_range_min": "0x0100000000001013",
"title_id_range_max": "0x0100000000001013",
"main_thread_stack_size": "0x100000",
"main_thread_priority": 44,
"default_cpu_id": 0,

View file

@ -1,8 +1,8 @@
{
"name": "QMenu",
"title_id": "0x010000000000100B",
"title_id_range_min": "0x010000000000100B",
"title_id_range_max": "0x010000000000100B",
"title_id": "0x0100000000001002",
"title_id_range_min": "0x0100000000001002",
"title_id_range_max": "0x0100000000001002",
"main_thread_stack_size": "0x100000",
"main_thread_priority": 44,
"default_cpu_id": 0,

View file

@ -54,6 +54,7 @@ namespace ui
this->selected_user = res.Read<u128>();
res.FinishRead();
this->StartPlayBGM();
this->LoadMenu();
break;
}

View file

@ -11,8 +11,8 @@ all:
@rm -rf $(CURDIR)/SdOut
@mkdir -p $(CURDIR)/SdOut/titles
@cp -r $(CURDIR)/SystemAppletQDaemon/Out $(CURDIR)/SdOut/titles/0100000000001000
@cp -r $(CURDIR)/LibraryAppletQMenu/Out $(CURDIR)/SdOut/titles/010000000000100B
@cp -r $(CURDIR)/LibraryAppletQHbTarget/Out $(CURDIR)/SdOut/titles/0100000000001009
@cp -r $(CURDIR)/LibraryAppletQMenu/Out $(CURDIR)/SdOut/titles/0100000000001002
@cp -r $(CURDIR)/LibraryAppletQHbTarget/Out $(CURDIR)/SdOut/titles/0100000000001013
@cp -r $(CURDIR)/SystemApplicationQHbTarget/Out $(CURDIR)/SdOut/titles/01008BB00013C000
setdev:

View file

@ -87,7 +87,7 @@ But, if all the functionality is handled by QMenu, why is this daemon process ne
### QMenu (LibraryAppletQMenu)
> This sub-project replaces eShop applet, aka title 010000000000100B.
> This sub-project replaces eShop applet, aka title 0100000000001002.
This is the HOME menu the user will see and interact with. It contains all the UI and sounc functionality, password, themes...
@ -103,7 +103,7 @@ This is the process which runs instead of flog, which is used to launch homebrew
#### Library applet (LibraryAppletQHbTarget)
> This sub-project replaces Mii applet, aka title 010000000000100B.
> This sub-project replaces Mii applet, aka title 0100000000001002.
This is the same process but, like in normal HOME menu and Album, it runs homebrew as an applet. However, exiting homebrew here will exit to HOME menu instead of exiting to hbmenu.
@ -150,11 +150,11 @@ In order to check uLaunch's installation, you will need to pay attention to the
### How do I know whether it is installed?
Check if folders `0100000000001000`, `010000000000100B`, `0100000000001009` and `01008BB00013C000` exist. (and that they aren't empty, or at least contain a `exefs.nsp` file)
Check if folders `0100000000001000`, `0100000000001002`, `0100000000001013` and `01008BB00013C000` exist. (and that they aren't empty, or at least contain a `exefs.nsp` file)
### How do I remove it?
1 - Delete the following folders: `010000000000100B`, `0100000000001009` and `01008BB00013C000`.
1 - Delete the following folders: `0100000000001002`, `0100000000001013` and `01008BB00013C000`.
2 - Delete **only `exefs.nsp` file** from `0100000000001000` directory (if there is a `romfs` folder present it could be a normal HOME menu theme)
@ -168,7 +168,7 @@ Clone (**recursively!**) this repo (uses libstratosphere and Plutonium submodule
If you get a crash using uLaunch, please check:
- If the crash's title is `0100000000001000`, `010000000000100B`, `0100000000001009` or `01008BB00013C000` and **you know for sure you have this project in your SD**, then it is very likely related to this project.
- If the crash's title is `0100000000001000`, `0100000000001002`, `0100000000001013` or `01008BB00013C000` and **you know for sure you have this project in your SD**, then it is very likely related to this project.
## Credits