diff --git a/README.md b/README.md index 0eee93d..bb221f9 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,36 @@ # WiiMart: a working, active WSC revival - + Nintendo, if you want me to take this down, please email me at wiimartshopping@gmail.com (please don't though I love this) WiiMart is the first ever Wii Shop Channel revival that lasted more than a week and still wasn't nuked! +You can find its source code here. -## This repository contains the backend's source code. +# Download +The cIOSes are [here](https://wiimart.github.io/cIOS/) while WiiMart's WAD [here](https://wiimart.github.io/wad/). In the meantime, [join the Discord!](https://dsc.gg/WiiMart) + +# Installation +Downloading WiiMart varies on what platform you are on. + +- Console + +Download the WiiMart WAD and the patched IOS WAD for your console type (Wii/vWii). We recommend [YAWMME](https://oscwii.org/library/app/yawmME) for installing WADs. + +vWii is the Wii U's Wii Mode + +You can install both WADs normally, but if they give you an error such as `-1022` or `-1029` you can delete the existing title then install. Press `-` to mark the channel for uninstallation, and then mark it with `+` for installation. + +- Dolphin + +*For those with Wii NAND backups* + +Install both the WiiMart WAD and the patched IOS WAD (for Wii). Install by going to `Tools` and `Install WAD`. You can then go to the Wii Menu by going to `Tools` and then `Load Wii System Menu 4.3X`. + +*For those without Wii NAND backups* + +So far, getting the shop on a blank NAND has been unsuccesful. + +
Pages managed by [LNLenost](https://github.com/LNLenost) diff --git a/translations/german/404.jsp b/translations/german/404.jsp new file mode 100644 index 0000000..40e8ad4 --- /dev/null +++ b/translations/german/404.jsp @@ -0,0 +1,9 @@ +<%@ page import = "java.io.*,java.util.*" %> +<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> +debug +

Oops! Diese Seite wurde nicht gefunden!

+
+

Um zu der Seite zurückzukehren, auf der Sie sich befanden, klicken Sie auf here +
+ Oder Sie können zur ersten Seite des Shops zurückkehren, indem Sie auf hier klicken. +

\ No newline at end of file diff --git a/translations/german/500.jsp b/translations/german/500.jsp new file mode 100644 index 0000000..14a3ffa --- /dev/null +++ b/translations/german/500.jsp @@ -0,0 +1,41 @@ +<%@ page import = "java.io.*,java.util.*,java.net.http.*,java.net.URI,java.net.http.HttpResponse.BodyHandlers,java.net.HttpURLConnection,java.net.URL,java.nio.charset.StandardCharsets,org.json.*" %> +<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> +<%@ page buffer="8192kb" autoFlush="true" %> +<%@ page isErrorPage="true" %> + + + + + + Server Fehler + + +

Uh oh!

+ Der Server ist auf einen Fehler gestoßen und konnte keine Antwort senden. +
+ Es gibt nichts falsches bei Ihnen, also wenn sie auf die vorherige Seite möchten, klicken sie hier. + +

Debug Infos:

+ <% + // Retrieve the exception object + Throwable throwable = (Throwable) request.getAttribute("javax.servlet.error.exception"); + if (throwable != null) { + %> +

+ Exception Message: + <%= throwable.getMessage() %> +

+
+            Stack Trace:
+            <%= org.apache.commons.lang3.exception.ExceptionUtils.getStackTrace(throwable) %>
+        
+ <% + } else { + %> +

No exception details are available.

+ <% + } + %> + + \ No newline at end of file