Go to file
Maschell f96f82e2c0 Create dependabot.yml 2023-07-23 10:30:58 +02:00
.github Create dependabot.yml 2023-07-23 10:30:58 +02:00
src Bump version 2023-07-19 19:34:59 +02:00
.clang-format First commit 2023-01-26 18:21:26 +01:00
.gitignore First commit 2023-01-26 18:21:26 +01:00
Dockerfile Update Dockerfile 2023-07-19 15:14:20 +02:00
LICENSE Add missing LICENSE 2023-02-22 16:18:16 +01:00
Makefile Only display the write lock error when a sd card is mounted 2023-03-26 18:03:44 +02:00
README.md Add libsdutils and SDHotSwapModule to README.md 2023-06-05 14:34:04 +02:00

README.md

Aroma Base Plugin

Provides some simple patches for Wii U Menu and checks for Aroma updates.

Installation

([ENVIRONMENT] is a placeholder for the actual environment name.)

  1. Copy the file AromaBasePlugin.wps into sd:/wiiu/environments/[ENVIRONMENT]/plugins.
  2. Requires the WiiUPluginLoaderBackend in sd:/wiiu/environments/[ENVIRONMENT]/modules.
  3. Requires the CURLWrapperModule in sd:/wiiu/environments/[ENVIRONMENT]/modules.
  4. Requires the NotificationModule in sd:/wiiu/environments/[ENVIRONMENT]/modules.
  5. Requires the RPXLoadingModule in sd:/wiiu/environments/[ENVIRONMENT]/modules.
  6. Requires the SDHotSwapModule in sd:/wiiu/environments/[ENVIRONMENT]/modules.

Usage

Via the plugin config menu (press L, DPAD Down and Minus on the GamePad, Pro Controller or Classic Controller) you can configure the plugin. The available options are the following:

  • Wii U Menu patches:
    • Avoid "Format" dialog on Wii U Menu (UStealth): (Default is false)
      • Skips the "Format"-nag when launching the Wii U Menu with a non-formatted external drive.
    • Skip "Shutdown warning" on boot: (Default is true)
      • Hide the "Shutdown warning" after shutting the console down by pressing the power button for 4 seconds.
  • Other patches:
    • Allow error notifications (Default is true)
    • Fix connecting to a 3DS in Mii Maker: (Default is true)
      • Forces "nn::ndm::SuspendDaemonsAndDisconnectIfWireless" to always return success, this fixes connecting to the 3DS in Mii Maker.

Building

For building you need:

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t aroma-base-plugin-builder

# make 
docker run -it --rm -v ${PWD}:/project aroma-base-plugin-builder make

# make clean
docker run -it --rm -v ${PWD}:/project aroma-base-plugin-builder make clean

Format the code via docker

docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src --exclude ./src/utils/json.hpp -i