A Wii U plugin which sends the titles you play to your RiiTag!
This will only work with Aroma!
- Install Aroma
- Download the latest stable release
- Place the
utag.wps
insideSD://wiiu/environments/aroma/plugins/
- Create a text file in
SD://wiiu/utag.txt
- Paste your RiiTag key inside (you can find it on the RiiTag website under "Account"). Do NOT use Windows Notepad!
NOTE: All titles except applets (browser, etc.) and system titles are counted, but not all games have covers.
Building via make
only logs errors (via OSReport). To enable logging via the LoggingModule set DEBUG
to 1
or VERBOSE
.
make
Logs errors only (via OSReport).
make DEBUG=1
Enables information and error logging via LoggingModule.
make DEBUG=VERBOSE
Enables verbose information and error logging via LoggingModule.
If the LoggingModule is not present, it'll fallback to UDP (Port 4405) and CafeOS logging.
You can pass the SERVER
variable to make
to change the server domain. This makes it possible to use your own RiiTag instance. It defaults to tag.rc24.xyz
(http).
make
Use tag.rc24.xyz
make SERVER=example.com
Use example.com
as server
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 utag-builder
# make
docker run -it --rm -v ${PWD}:/project utag-builder make
# make clean
docker run -it --rm -v ${PWD}:/project utag-builder make clean
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src -i