You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,33 @@ Inkay is an Aroma/WUPS plugin that patches various Nintendo Network URLs on a Wi
13
13
14
14
Inkay also includes game-specific patches to add extra features:
15
15
- Modpack-specific matchmaking for global, regional rooms (by simulating extra DLC) - **Mario Kart 8**
16
-
- P2P port override for better connection stability (if you port forward) - **Minecraft: Wii U Edition**
16
+
- P2P port override for better connection stability (if you port forward) - **Minecraft: Wii U Edition**, **Mario Kart 8**, **Splatoon**
17
17
18
-
## Dependencies
18
+
## Requirements
19
19
Inkay is only supported on the release version of Aroma configured for autoboot/coldboot. Other configurations (specifically lacking coldboot) may cause issues with SpotPass.
20
20
21
21
## Safety
22
22
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.
23
23
24
+
## Compiling - Docker
25
+
Inkay's dependencies and build tooling can be handled as a container, which is recommended for WUPS plugins. Using `docker` or `podman`:
26
+
```shell
27
+
docker build -t inkay .
28
+
docker run --rm -v $(pwd):/app inkay make
29
+
# you can replace "make" with other commands - e.g. make clean
30
+
```
31
+
If using `podman` on SELinux systems (like Fedora Linux), you might need to use `$(pwd):/app:Z` instead of `$(pwd):/app`.
32
+
33
+
## Compiling - System
34
+
Inkay has the following dependencies aside from devkitPPC and wut:
0 commit comments