diff --git a/meta/hbl/icon.png b/meta/hbl/icon.png new file mode 100644 index 00000000..e09c21da Binary files /dev/null and b/meta/hbl/icon.png differ diff --git a/meta/hbl/meta.xml b/meta/hbl/meta.xml new file mode 100644 index 00000000..283e45d4 --- /dev/null +++ b/meta/hbl/meta.xml @@ -0,0 +1,15 @@ + + + WUPDownload + Pokes303 + 1.0 + 20191809000000 + WiiU NUS Downloader + This app is made for downloading installable content from the NUS directly onto the WiiU SD Card. + If a ticket isn't found on the NUS, you can create fake ones (title.tik) at the start of a download. + Please, don't do piracy with this app (Only download games that you have bought). + + Source code can be found here: https://github.com/Pokes303/WUPDownloader + + + \ No newline at end of file diff --git a/meta/menu/bootDrcTex.tga b/meta/menu/bootDrcTex.tga new file mode 100644 index 00000000..4e8fefd2 Binary files /dev/null and b/meta/menu/bootDrcTex.tga differ diff --git a/meta/menu/bootTvTex.tga b/meta/menu/bootTvTex.tga new file mode 100644 index 00000000..999f16d8 Binary files /dev/null and b/meta/menu/bootTvTex.tga differ diff --git a/meta/menu/iconTex.tga b/meta/menu/iconTex.tga new file mode 100644 index 00000000..84886b32 Binary files /dev/null and b/meta/menu/iconTex.tga differ diff --git a/src/main.cpp b/src/main.cpp index d5ef6571..c31a1145 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -67,13 +67,13 @@ void readInput() { } size_t write_callback(void *ptr, size_t size, size_t nmemb, FILE *stream) { - WHBLogPrintf("Writing file..."); + //WHBLogPrintf("Writing file..."); size_t written = fwrite(ptr, size, nmemb, stream); return written; } static int progressCallback(void *clientp, double dltotal, double dlnow) { - WHBLogPrintf("Downloading: %s (%u/%u) [%u%%] %u / %u bytes", downloading, dcontent, contents, (uint32_t)(dlnow / ((dltotal > 0) ? dltotal : 1) * 100), (uint32_t)dlnow, (uint32_t)dltotal); + //WHBLogPrintf("Downloading: %s (%u/%u) [%u%%] %u / %u bytes", downloading, dcontent, contents, (uint32_t)(dlnow / ((dltotal > 0) ? dltotal : 1) * 100), (uint32_t)dlnow, (uint32_t)dltotal); startRefresh(); if (dltotal == 0) write(0, 0, "Preparing"); @@ -570,7 +570,6 @@ int main() { } } exit: - WHBLogPrintf("Exiting..."); SWKBD_Shutdown(); shutdownScreen(); @@ -580,7 +579,6 @@ int main() { FSShutdown(); VPADShutdown(); - socket_lib_finish(); WHBLogUdpDeinit(); WHBProcShutdown(); diff --git a/src/menu.cpp b/src/menu.cpp index 48af596c..39ea641c 100644 --- a/src/menu.cpp +++ b/src/menu.cpp @@ -13,8 +13,7 @@ void writeMainMenu() { write(0, 4, "Press (A) to download a content from the NUS with the title ID"); write(0, 5, "Press (Y) to generate a fake file"); - write(0, 7, "Press (HOME) to exit"); - + write(0, 7, "Press (HOME) to exit on HBL"); write(0, 14, "DO NOT EJECT THE SD CARD OR THE APPLICATION WILL CRASH!");