Go to file
2018-09-23 14:14:49 +02:00
src First commit! Have fun! 2018-06-30 13:42:02 +02:00
.gitignore First commit! Have fun! 2018-06-30 13:42:02 +02:00
.travis.yml Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:14:49 +02:00
Dockerfile Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:14:49 +02:00
LICENSE Add license 2018-07-01 19:36:07 +02:00
Makefile First commit! Have fun! 2018-06-30 13:42:02 +02:00
makefile.mk Use a fixed target filename 2018-09-23 14:13:06 +02:00
README.md Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:14:49 +02:00

SwipSwapMe Plugin for the Wii U Plugin System Build Status

This little app can be used to swap the TV and DRC screen.

Wii U Plugin System

This is a plugin for the Wii U Plugin System (WUPS). To be able to use this plugin you have to place the resulting .mod file into the following folder:

sd:/wiiu/plugins

When the file is placed on the SDCard you can load it with plugin loader.

Usage

When starting the app, you have the option to set your own button combo. Just press the button combo you want for 2 seconds. Otherwise it will use the default settings (TV button).

Press the TV button (or your button combo) on the Gamepad to swap the screens. Thats all.

Building

For building you need:

Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.

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 swipswapme-builder

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

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