mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-12-24 17:11:58 +01:00
[Plugins] Added readmes to the plugins, renamed SwapDRC to SwipSwapMe
This commit is contained in:
parent
96224310b0
commit
78a160a74c
@ -54,7 +54,7 @@ script:
|
||||
- (cd example_plugin && make)
|
||||
- (cd plugins/padcon && make)
|
||||
- (cd plugins/sdcafiine && make)
|
||||
- (cd plugins/swapdrc && make)
|
||||
- (cd plugins/swipswapme && make)
|
||||
- (cd plugins/hid_to_vpad && make)
|
||||
|
||||
before_deploy:
|
||||
@ -66,7 +66,7 @@ before_deploy:
|
||||
- (cd loader && make)
|
||||
- cp example_plugin/example_plugin.mod wiiu/plugins
|
||||
- cp plugins/padcon/padcon.mod wiiu/plugins
|
||||
- cp plugins/swapdrc/swapdrc.mod wiiu/plugins
|
||||
- cp plugins/swipswapme/swipswapme.mod wiiu/plugins
|
||||
- cp plugins/sdcafiine/sdcafiine.mod wiiu/plugins
|
||||
- cp plugins/hid_to_vpad/hid_to_vpad.mod wiiu/plugins
|
||||
- cp loader/meta/* wiiu/apps/wiiupluginloader
|
||||
|
24
plugins/hid_to_vpad/README.md
Normal file
24
plugins/hid_to_vpad/README.md
Normal file
@ -0,0 +1,24 @@
|
||||
# HIDtoVPAD Plugin for the Wii U Plugin System
|
||||
|
||||
See https://github.com/Maschell/hid_to_vpad for more information.
|
||||
|
||||
# Currently supported
|
||||
|
||||
- Support for Controller with built in support.
|
||||
- Network Client support
|
||||
- Alle attached devices are mapped automatically to the Gamepad
|
||||
|
||||
Whats NOT working:
|
||||
|
||||
- Loading configuration files (to extend controller support or change configs)
|
||||
- Mapping the controllers individually (No GUI for this)
|
||||
|
||||
## Building
|
||||
|
||||
For building you need:
|
||||
- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions.
|
||||
- [libutils](https://github.com/Maschell/libutils) for common functions.
|
||||
- [controller_patcher](https://github.com/Maschell/controller_patcher) to emulate the controllers.
|
||||
|
||||
|
||||
Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
|
10
plugins/padcon/README.md
Normal file
10
plugins/padcon/README.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Padcon Plugin for the Wii U Plugin System
|
||||
|
||||
## Building
|
||||
|
||||
For building you need:
|
||||
- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions.
|
||||
- [libutils](https://github.com/Maschell/libutils) for common functions.
|
||||
|
||||
|
||||
Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
|
23
plugins/sdcafiine/README.md
Normal file
23
plugins/sdcafiine/README.md
Normal file
@ -0,0 +1,23 @@
|
||||
# SDCafiine Plugin for the Wii U Plugin System
|
||||
|
||||
See https://github.com/Maschell/SDCafiine for more information.
|
||||
|
||||
# Currently supported
|
||||
|
||||
- Modpack selector
|
||||
- Loads mods on games with native SD Access (Smash 4)
|
||||
|
||||
Whats NOT working:
|
||||
|
||||
- SD Access for all other games
|
||||
- USB support (both FAT32 and NTFS)
|
||||
|
||||
## Building
|
||||
|
||||
For building you need:
|
||||
- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions.
|
||||
- [libutils](https://github.com/Maschell/libutils) for common functions.
|
||||
- [libfswrapper](https://github.com/Maschell/fs_wrapper) to replace the fs functions.
|
||||
|
||||
|
||||
Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
|
19
plugins/swipswapme/README.md
Normal file
19
plugins/swipswapme/README.md
Normal file
@ -0,0 +1,19 @@
|
||||
# SwipSwapMe Plugin for the Wii U Plugin System
|
||||
|
||||
This little app can be used to swap the TV and DRC screen.
|
||||
|
||||
# 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:
|
||||
- [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions.
|
||||
- [libutils](https://github.com/Maschell/libutils) for common functions.
|
||||
|
||||
|
||||
Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
|
@ -34,7 +34,7 @@
|
||||
#include <utils/logger.h>
|
||||
#include <common/c_retain_vars.h>
|
||||
|
||||
WUPS_MODULE_NAME("SwapDRC");
|
||||
WUPS_MODULE_NAME("SwipSwapMe");
|
||||
WUPS_MODULE_VERSION("v1.0");
|
||||
WUPS_MODULE_AUTHOR("Maschell");
|
||||
WUPS_MODULE_LICENSE("GPL");
|
Loading…
Reference in New Issue
Block a user