WiiU Homebrew Launcher
Go to file
Maschell b081028575 Changes to be compatible to the latest libgui version 2020-04-27 13:03:54 +02:00
channel - reverted the boot logo too as the old one is better 2016-11-20 21:48:32 +01:00
data initial commit 2016-02-29 22:28:18 +01:00
meta fixed not working sendelf/wiiload support 2016-11-27 22:48:44 +01:00
src Changes to be compatible to the latest libgui version 2020-04-27 13:03:54 +02:00
.gitignore Compatible with latest wut, eemove ELF-Loading, use rpx-redirections for loading, use libgui 2019-08-15 10:53:52 +02:00
LICENSE initial commit 2016-02-29 22:28:18 +01:00
Makefile Changes to be compatible to the latest libgui version 2020-04-27 13:03:54 +02:00
README.md Update the readme. 2019-08-18 22:01:31 +02:00
filelist.sh initial changes for an rpx homebrew launcher 2016-11-12 15:05:35 +01:00

README.md

WiiU Homebrew Launcher RPX

The Homebrew Launcher is a WiiU homebrew that lists homebrew applications located on a SD card and permits launching them (similar to the Homebrew Channel of the Wii).

Usage

To use the Homebrew Launcher (or HBL, for short) you must copy homebrew_launcher.rpx into SD:/wiiu/apps/homebrew_launcher/homebrew_launcher.rpx.

To start the Homebrew Launcher you need to run MochaLite and open the "Health and Safety"-app.

The apps that will be listed are should be in the following path /wiiu/apps/homebrew_name/some_elf_name.rpx on the root of the SD card. A meta.xml and an icon.png (256x96) are optional. Here is an example:

  • sd:/
    • wiiu/
      • apps/
      • homebrew_launcher/
        • homebrew_launcher.rpx
        • meta.xml
        • icon.png
      • loadiine_gx2/
        • loadiine_gx2.rpx
        • meta.xml
        • icon.png
      • ddd/
        • ddd.rpx
        • meta.xml
        • icon.png
      • ftpiiu/
        • ftpiiu.rpx
        • meta.xml
        • icon.png

Building the Homebrew Launcher

To build the main application devkitPPC is required as well as some additionally libraries. If not yet done export the path of devkitPPC and devkitPro to the evironment variables DEVKITPRO and DEVKITPPC.

Make sure you have wut installed.

In addition you need:

  • libgui for the gui elements.
  • The ppc-portlibs pacman -Syu ppc-portlibs

All remaining is to enter the main application path and enter "make". You should get a homebrew_launcher.rpx in the main path.

Building an applicationfor the Homebrew Launcher

For an example on how to build an application for the HBL check out the wut samples.

Meta XML

The meta.xml is optional and can be put in the same path as the homebrew ELF file to display additional information about the homebrew.

Here is a XML example:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>name</name>
<coder>coder<coder>
<version>app version</version>
<release_date>app release date</release_date>
<short_description>short description</short_description> 
<long_description>long description</long_description> 
</app>

Icon PNG

The icon.png has to be of the resolution 256 x 96 and can be placed in the same path as the homebrew ELF file. This file is optional and shows an icon for the homebrew inside the homebrew launcher.

Credits

  • Dimok
  • orboditilt
  • many contributors with their pull requests
WUT RPX toolchain which is used to build RPX version of HBL
  • exjam
  • shinyquagsire23
  • several more contributors
HBL channel artwork / boot sound and video
  • cathor
  • Maschell