forked from PretendoNetwork/Inkay
malamar changes
This commit is contained in:
parent
d5f9207deb
commit
e421ac5a40
11 changed files with 47 additions and 93 deletions
25
README.md
25
README.md
|
|
@ -1,8 +1,6 @@
|
|||
# Inkay - Aroma patches for Pretendo
|
||||
# Malamar - Aroma patches for Splatfestival Network/Spacebar
|
||||
|
||||
[](https://pretendo.network)
|
||||
|
||||
Inkay is an Aroma/WUPS plugin that patches various Nintendo Network URLs on a Wii U to use Pretendo Network instead. It also (for the time being) bypasses SSL verification in most cases. It redirects Nintendo Network in:
|
||||
Malamar is an Aroma/WUPS plugin based on Pretendo's Malamar that patches various Nintendo Network URLs on a Wii U to use Splatfestival/Spacebar Network instead. It also (for the time being) bypasses SSL verification in most cases. It redirects Nintendo Network in:
|
||||
|
||||
- IOSU-side connections (Friends, SpotPass, accounts etc.)
|
||||
- Account Settings
|
||||
|
|
@ -11,27 +9,27 @@ Inkay is an Aroma/WUPS plugin that patches various Nintendo Network URLs on a Wi
|
|||
- Miiverse (in-game)
|
||||
- Miiverse applet
|
||||
|
||||
Inkay also includes game-specific patches to add extra features:
|
||||
Malamar also includes game-specific patches to add extra features:
|
||||
- Modpack-specific matchmaking for global, regional rooms (by simulating extra DLC) - **Mario Kart 8**
|
||||
- P2P port override for better connection stability (if you port forward) - **Minecraft: Wii U Edition**, **Mario Kart 8**, **Splatoon**
|
||||
|
||||
## Requirements
|
||||
Inkay is only supported on the release version of Aroma configured for autoboot/coldboot. Other configurations (specifically lacking coldboot) may cause issues with SpotPass.
|
||||
Malamar is only supported on the release version of Aroma configured for autoboot/coldboot. Other configurations (specifically lacking coldboot) may cause issues with SpotPass.
|
||||
|
||||
## Safety
|
||||
Inkay's patches are all temporary, and only applied in-memory without modifying your console. The SSL patch, while also temporary, could reduce the overall security of your console while active - this is because it no longer checks if a server is verified. However, this does not apply to the Internet Browser, where SSL still works as expected.
|
||||
Malamar's patches are all temporary, and only applied in-memory without modifying your console. The SSL patch, while also temporary, could reduce the overall security of your console while active - this is because it no longer checks if a server is verified. However, this does not apply to the Internet Browser, where SSL still works as expected.
|
||||
|
||||
## Compiling - Docker
|
||||
Inkay's dependencies and build tooling can be handled as a container, which is recommended for WUPS plugins. Using `docker` or `podman`:
|
||||
Malamar's dependencies and build tooling can be handled as a container, which is recommended for WUPS plugins. Using `docker` or `podman`:
|
||||
```shell
|
||||
docker build -t inkay .
|
||||
docker run --rm -v $(pwd):/app inkay make
|
||||
docker build -t malamar .
|
||||
docker run --rm -v $(pwd):/app malamar make
|
||||
# you can replace "make" with other commands - e.g. make clean
|
||||
```
|
||||
If using `podman` on SELinux systems (like Fedora Linux), you might need to use `$(pwd):/app:Z` instead of `$(pwd):/app`.
|
||||
|
||||
## Compiling - System
|
||||
Inkay has the following dependencies aside from devkitPPC and wut:
|
||||
Malamar has the following dependencies aside from devkitPPC and wut:
|
||||
- [WiiUPluginSystem](https://github.com/wiiu-env/WiiUPluginSystem)
|
||||
- [WiiUModuleSystem](https://github.com/wiiu-env/WiiUModuleSystem)
|
||||
- [libmocha](https://github.com/wiiu-env/libmocha)
|
||||
|
|
@ -39,7 +37,4 @@ Inkay has the following dependencies aside from devkitPPC and wut:
|
|||
- [libnotifications](https://github.com/wiiu-env/libnotifications/)
|
||||
- [libfunctionpatcher](https://github.com/wiiu-env/libfunctionpatcher)
|
||||
|
||||
Each of these should be `make install`-able. After that, you can compile Inkay with `make`.
|
||||
|
||||
## TODO
|
||||
See [Issues](https://github.com/PretendoNetwork/Inkay/issues).
|
||||
Each of these should be `make install`-able. After that, you can compile Malamar with `make`.
|
||||
|
|
|
|||
Loading…
Reference in a new issue