diff --git a/WebContent/WEB-INF/templates/base.html b/WebContent/WEB-INF/templates/base.html index b25480b..2c5ea2d 100644 --- a/WebContent/WEB-INF/templates/base.html +++ b/WebContent/WEB-INF/templates/base.html @@ -194,6 +194,7 @@
About DoujinSoft
WarioWare DIY/Made in Ore.
We hope this archive can make people (re)discover content lost to the Nintendo WFC closure.
Thanks to the folks at WiiLink24, RiiConnect24, andrewk1024 for the 8-bit instrument samples,
and
You can upload a Wii/NDS save here, and we'll import the games/comics/records you've chosen into it.
-Alternatively, if your Wii console is using
RiiConnect24, we can send stuff directly to +Alternatively, if your Wii console is using WiiLink24, we can send stuff directly to it. No save export/import needed!
{% endblock %} @@ -28,7 +28,7 @@
filter_2 Shipping Method
+ Make sure you're properly hooked to WiiLink24 first. Easiest way to check that is to see if your Weather Channel is working!
- Past that, make sure DoujinSoft's Wii Number appears as a friend in your Wii Address Book. + Past that, make sure DoujinSoft's Wii Number appears as a friend in your Wii Address Book, and that you've patched + DIY Showcase properly.
filter_8 Where did you source the games from?
The Nintendo WFC dump can be found here. diff --git a/WebContent/WEB-INF/templates/surveys.html b/WebContent/WEB-INF/templates/surveys.html index 48282d7..514a9cb 100644 --- a/WebContent/WEB-INF/templates/surveys.html +++ b/WebContent/WEB-INF/templates/surveys.html @@ -5,12 +5,13 @@ {% block color %}orange{% endblock %} {% block title %}Surveys{% endblock %} {% block desc %} -Hot takes and opinions, coming directly from RiiConnect24 users! -

-Games/Records/Comics sent to DIY Showcase on Wii can be rated by users.
This page is a simple way to display all the ratings we've received. -

+Hot takes and opinions, coming directly from WiiLink24 users! +

+Games/Records/Comics sent to DIY Showcase on Wii can be rated by users.
This page is a simple way to display all +the ratings we've received. +

-
+
@@ -20,8 +21,8 @@ {% block content %} - {% include "./surveysDetail.html" %} - +{% include "./surveysDetail.html" %} + {% endblock %} {% block footdata %} @@ -30,4 +31,4 @@ -{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/WebContent/WEB-INF/templates/upload.html b/WebContent/WEB-INF/templates/upload.html index 9e05548..6b76f3f 100644 --- a/WebContent/WEB-INF/templates/upload.html +++ b/WebContent/WEB-INF/templates/upload.html @@ -10,7 +10,7 @@ Adding your WarioWare DIY content to DoujinSoft so it can be shared with the world has never been easier!
-You can either upload .mio files here directly or use RiiConnect24 with DIY Showcase to +You can either upload .mio files here directly or use WiiLink24 with DIY Showcase to send us content.
@@ -21,7 +21,7 @@
-
store I want to use RiiConnect24!
+
store I want to use WiiLink24!
Please make sure you've registered with us in the Cart first!
If you did so, all you have to do is send your content to DoujinSoft's Wii Friend through WarioWare: DIY Showcase's @@ -29,11 +29,11 @@
store I want to use RiiCon (If you can't send content to DoujinSoft on your Wii, make sure your copy of DIY Showcase is patched.)

- Files sent this way will be instantly approved and featured in the RC24 + Files sent this way will be instantly approved and featured in the WL24 Collections!
You'll also receive a nice thank-you letter as a bonus. 💌 -
save I don't have RiiConnect24 / I want to send you .mio +
save I don't have WiiLink24 / I want to send you .mio files!
First off, please make sure the files you want to send aren't already in the archive! diff --git a/WebContent/js/init.js b/WebContent/js/init.js index a074366..047e5df 100644 --- a/WebContent/js/init.js +++ b/WebContent/js/init.js @@ -88,7 +88,7 @@ function truckClicked() { r_text[5] = "Check the Upload page if you want to know how to extract .mio files from your saves."; r_text[6] = "bazinga"; r_text[7] = "wow this is just like the news channel cat except cheaper"; - r_text[8] = "Stuff sent through DIY Showcase with RiiConnect24 is automatically approved!"; + r_text[8] = "Stuff sent through DIY Showcase with WiiLink24 is automatically approved!"; r_text[9] = 'The truck seems to have dropped...something!'; var i = Math.floor(10 * Math.random()) diff --git a/src/com/difegue/doujinsoft/wc24/MailItem.java b/src/com/difegue/doujinsoft/wc24/MailItem.java index b7fff7d..87cef48 100644 --- a/src/com/difegue/doujinsoft/wc24/MailItem.java +++ b/src/com/difegue/doujinsoft/wc24/MailItem.java @@ -194,7 +194,7 @@ private boolean validateFriendCode(String code) { private static String RECAP_FOOTER = "~~~~~ Service provided for fun ~~~~~\n" + - "~~~~~ by RiiConnect24 and ~~~~~\n" + + "~~~~~ by WiiLink24 and ~~~~~\n" + "~~~~~ Difegue @ TVC-16 ~~~~~"; private static String[] LETTERHEAD_MIIS = { diff --git a/src/com/difegue/doujinsoft/wc24/MailItemParser.java b/src/com/difegue/doujinsoft/wc24/MailItemParser.java index 2241910..071c708 100644 --- a/src/com/difegue/doujinsoft/wc24/MailItemParser.java +++ b/src/com/difegue/doujinsoft/wc24/MailItemParser.java @@ -178,7 +178,7 @@ private MailItem analyzeMail(String mail) throws Exception { String subdomain = "mail."; if (wc24Server == "rc24.xyz") subdomain = ""; - + // Other emails... // Change From: and To: to the server's wii address and the backup wii address // respectively @@ -289,13 +289,13 @@ private void addToWC24Collection(String type, String hash) throws FileNotFoundEx String collectionFile = dataDir + "/collections/"; switch (type) { case "G": - collectionFile += "e_rc24_g"; + collectionFile += "e_wl24_g"; break; case "RR": - collectionFile += "e_rc24_r"; + collectionFile += "e_wl24_r"; break; case "MMM": - collectionFile += "e_rc24_m"; + collectionFile += "e_wl24_m"; break; }