reformat files
alot of the markdown files didnt match the common markdown specification
This commit is contained in:
parent
63abd56f07
commit
6a7f770fa1
12 changed files with 230 additions and 155 deletions
|
|
@ -4,7 +4,8 @@ This site is generated by [Jekyll](https://jekyllrb.com), a Ruby-based static si
|
||||||
It's built by GitHub and served automatically on commit.
|
It's built by GitHub and served automatically on commit.
|
||||||
|
|
||||||
To build and serve this website locally for testing:
|
To build and serve this website locally for testing:
|
||||||
|
|
||||||
1. Install [Ruby](https://www.ruby-lang.org/). Typically, the latest version is what you want to install.
|
1. Install [Ruby](https://www.ruby-lang.org/). Typically, the latest version is what you want to install.
|
||||||
2. Ensure `bundle`, a dependency management system for Ruby, is installed by running `gem install bundler`.
|
2. Ensure `bundle`, a dependency management system for Ruby, is installed by running `gem install bundler`.
|
||||||
3. Run `bundle install` to pull in Jekyll and other dependencies.
|
3. Run `bundle install` to pull in Jekyll and other dependencies.
|
||||||
4. You can now run `bundle exec jekyll serve`! By default, the site will be available on http://localhost:4000.
|
4. You can now run `bundle exec jekyll serve`! By default, the site will be available on <http://localhost:4000>.
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,10 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Do not apply line height to headers. */
|
/* Do not apply line height to headers. */
|
||||||
h1, h2, h3, h4 {
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4 {
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -31,7 +34,7 @@ h1, h2, h3, h4 {
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-bars {
|
.mobile-bars {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center {
|
.center {
|
||||||
|
|
@ -40,44 +43,44 @@ h1, h2, h3, h4 {
|
||||||
|
|
||||||
/* Ensure that the navbar as a whole stays on screen. */
|
/* Ensure that the navbar as a whole stays on screen. */
|
||||||
.page-header {
|
.page-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-logo {
|
.nav-logo {
|
||||||
float: left;
|
float: left;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header nav {
|
.page-header nav {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header ul {
|
.page-header ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header li {
|
.page-header li {
|
||||||
float: left;
|
float: left;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header li a {
|
.page-header li a {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 10px 10px;
|
padding: 10px 10px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header li a:hover {
|
.page-header li a:hover {
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
|
|
@ -144,7 +147,9 @@ li {
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header h1, .header h2, .header ul {
|
.header h1,
|
||||||
|
.header h2,
|
||||||
|
.header ul {
|
||||||
margin-left: 20%;
|
margin-left: 20%;
|
||||||
margin-right: 20%;
|
margin-right: 20%;
|
||||||
}
|
}
|
||||||
|
|
@ -203,7 +208,10 @@ li {
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.faq h1, .faq p, .faq li, .faq h2 {
|
.faq h1,
|
||||||
|
.faq p,
|
||||||
|
.faq li,
|
||||||
|
.faq h2 {
|
||||||
margin-left: 20%;
|
margin-left: 20%;
|
||||||
margin-right: 20%;
|
margin-right: 20%;
|
||||||
}
|
}
|
||||||
|
|
@ -225,8 +233,9 @@ li {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
margin-left: 20%;
|
margin-left: 20%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section td, th {
|
.section td,
|
||||||
|
th {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border: 3px solid #000;
|
border: 3px solid #000;
|
||||||
|
|
@ -265,17 +274,28 @@ li {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header h1, .header h3, .header ul {
|
.header h1,
|
||||||
|
.header h3,
|
||||||
|
.header ul {
|
||||||
margin-left: 3%;
|
margin-left: 3%;
|
||||||
margin-right: 3%;
|
margin-right: 3%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section h1, .section p, .section li, .section h2, .section h3, .section h4, .section h5 {
|
.section h1,
|
||||||
|
.section p,
|
||||||
|
.section li,
|
||||||
|
.section h2,
|
||||||
|
.section h3,
|
||||||
|
.section h4,
|
||||||
|
.section h5 {
|
||||||
margin-left: 3%;
|
margin-left: 3%;
|
||||||
margin-right: 3%;
|
margin-right: 3%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.faq h1, .faq p, .faq li, .faq h2 {
|
.faq h1,
|
||||||
|
.faq p,
|
||||||
|
.faq li,
|
||||||
|
.faq h2 {
|
||||||
margin-left: 3%;
|
margin-left: 3%;
|
||||||
margin-right: 3%;
|
margin-right: 3%;
|
||||||
}
|
}
|
||||||
|
|
@ -287,7 +307,7 @@ li {
|
||||||
|
|
||||||
.section {
|
.section {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -303,11 +323,11 @@ li {
|
||||||
.item {
|
.item {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-logo {
|
.header-logo {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-logo img {
|
.header-logo img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
@ -320,7 +340,7 @@ li {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar a {
|
.navbar a {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
@ -349,4 +369,4 @@ li {
|
||||||
.navbar a {
|
.navbar a {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
66
faq.md
66
faq.md
|
|
@ -9,7 +9,7 @@ h3, ul {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For title pairs, do not pad between. */
|
/*For title pairs, do not pad between.*/
|
||||||
.title-pair > h1 {
|
.title-pair > h1 {
|
||||||
padding-bottom: 0px;
|
padding-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
|
@ -26,15 +26,18 @@ h3, ul {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
### Why WiiLink?
|
### Why WiiLink?
|
||||||
- WiiLink is the only service to bring back Japanese exclusive Wii channels after they were officially shut down.
|
|
||||||
- We've made [Wii no Ma](/services/wii-room) and the [Digicam Print Channel](/services/digicam) functional once more.
|
- WiiLink is the only service to bring back Japanese exclusive Wii channels after they were officially shut down.
|
||||||
- We're hard at work on the [Demae Channel](/services/demae), letting you order food directly from your Wii.
|
- We've made [Wii no Ma](/services/wii-room) and the [Digicam Print Channel](/services/digicam) functional once more.
|
||||||
- With our service, you can experience all of these once more on your Nintendo Wii - possibly for the first time.
|
- We're hard at work on the [Demae Channel](/services/demae), letting you order food directly from your Wii.
|
||||||
|
- With our service, you can experience all of these once more on your Nintendo Wii - possibly for the first time.
|
||||||
|
|
||||||
### Why does WiiLink exist?
|
### Why does WiiLink exist?
|
||||||
|
|
||||||
- Without a replacement service for these Japanese and Streaming channels, they would be lost to time, never to be seen again. However, thanks to our work, future generations of players can experience these channels again!
|
- Without a replacement service for these Japanese and Streaming channels, they would be lost to time, never to be seen again. However, thanks to our work, future generations of players can experience these channels again!
|
||||||
|
|
||||||
### Is using WiiLink legal?
|
### Is using WiiLink legal?
|
||||||
|
|
||||||
- Absolutely. We develop all of our channels without copyrighted code and material, and rely solely on what is provided within the channel and public knowledge. All code is written from the ground up. You will have no legal trouble from using our service.
|
- Absolutely. We develop all of our channels without copyrighted code and material, and rely solely on what is provided within the channel and public knowledge. All code is written from the ground up. You will have no legal trouble from using our service.
|
||||||
|
|
||||||
<div class="title-pair">
|
<div class="title-pair">
|
||||||
|
|
@ -42,33 +45,38 @@ h3, ul {
|
||||||
*Regarding the channels you install to your Wii.*
|
*Regarding the channels you install to your Wii.*
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
### I have a question about a WiiLink channel!
|
### I have a question about a WiiLink channel
|
||||||
- Check our [Services](/services) and read that channel's FAQ. Your question may already be answered!
|
|
||||||
- If you still have questions, please reach out. We're more than happy to assist!
|
- Check our [Services](/services) and read that channel's FAQ. Your question may already be answered!
|
||||||
- The best time for real-time support is within our [Discord server]({{ site.discord }}), where an active community exists.
|
- If you still have questions, please reach out. We're more than happy to assist!
|
||||||
- You can also contact us via our [Twitter](https://twitter.com/wiilink24) account!
|
- The best time for real-time support is within our [Discord server]({{ site.discord }}), where an active community exists.
|
||||||
|
- You can also contact us via our [Twitter](https://twitter.com/wiilink24) account!
|
||||||
|
|
||||||
### Will the Demae Channel order real food?
|
### Will the Demae Channel order real food?
|
||||||
- Yes! Some current information:
|
|
||||||
- Support has been developed for Domino's in Canada, and Deliveroo in Europe.
|
- Yes! Some current information:
|
||||||
- There are plans to expand more services over to Demae for other countries.
|
- Support has been developed for Domino's in Canada, and Deliveroo in Europe.
|
||||||
- If this ever changes throughout development, we will **always** have fake ordering, with restaurants curated from our team!
|
- There are plans to expand more services over to Demae for other countries.
|
||||||
|
- If this ever changes throughout development, we will **always** have fake ordering, with restaurants curated from our team!
|
||||||
|
|
||||||
### How do I install a WiiLink channel on my Wii or Wii U?
|
### How do I install a WiiLink channel on my Wii or Wii U?
|
||||||
- You'll want to check out our [instructions on wii.guide]({{ site.guide }}) for simple, easy to follow instructions to get everything installed.
|
|
||||||
- For video streaming channels from Striim Network, see their [installation guide]({{ site.guide_striim }})!
|
- You'll want to check out our [instructions on wii.guide]({{ site.guide }}) for simple, easy to follow instructions to get everything installed.
|
||||||
|
- For video streaming channels from Striim Network, see their [installation guide]({{ site.guide_striim }})!
|
||||||
|
|
||||||
### How do I update a WiiLink channel?
|
### How do I update a WiiLink channel?
|
||||||
- Updating WiiLink channels is the exact same as installing! Simply run the WiiLink or Striim patcher once more, and install the created WADs.
|
|
||||||
|
|
||||||
### I'm recieving error -1022 when trying to install WiiLink WADs on a WAD manager!
|
- Updating WiiLink channels is the exact same as installing! Simply run the WiiLink or Striim patcher once more, and install the created WADs.
|
||||||
- Whenever this happens, just press `-` and then `A` on the Wii Remote to uninstall the channel(s). Afterwards, reinstall the channel(s) from your WAD directory.
|
|
||||||
- If the problem persists, please bring up the issue in support on our [Discord server]({{ site.discord }}) and we will try to help you.
|
|
||||||
|
|
||||||
|
### I'm recieving error -1022 when trying to install WiiLink WADs on a WAD manager
|
||||||
|
|
||||||
|
- Whenever this happens, just press `-` and then `A` on the Wii Remote to uninstall the channel(s). Afterwards, reinstall the channel(s) from your WAD directory.
|
||||||
|
- If the problem persists, please bring up the issue in support on our [Discord server]({{ site.discord }}) and we will try to help you.
|
||||||
|
|
||||||
### Is your service open source?
|
### Is your service open source?
|
||||||
- Absolutely! We're a strong believer in open source - from our service backends to our patchers, we strive to release source code.
|
|
||||||
- We're primarily active on GitHub, and highly appreciate contributions! Check us out: [{{ site.github }}]({{ site.github }})
|
- Absolutely! We're a strong believer in open source - from our service backends to our patchers, we strive to release source code.
|
||||||
|
- We're primarily active on GitHub, and highly appreciate contributions! Check us out: [{{ site.github }}]({{ site.github }})
|
||||||
|
|
||||||
<div class="title-pair">
|
<div class="title-pair">
|
||||||
# WiiConnect24
|
# WiiConnect24
|
||||||
|
|
@ -76,14 +84,18 @@ h3, ul {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
### Is your service a replacement for services such as RiiConnect24?
|
### Is your service a replacement for services such as RiiConnect24?
|
||||||
- No! This service is designed to be a companion to RiiConnect24, providing exclusive Japanese and streaming services, though some channels will be able to replace them (such as Mii Contest Channel and Everybody Votes Channel)
|
|
||||||
|
- No! This service is designed to be a companion to RiiConnect24, providing exclusive Japanese and streaming services, though some channels will be able to replace them (such as Mii Contest Channel and Everybody Votes Channel)
|
||||||
|
|
||||||
### Why is WiiLink developing WiiConnect24?
|
### Why is WiiLink developing WiiConnect24?
|
||||||
- Having a fresh approach to existing methods is important. For example, doing our own research can lead to important developments.
|
|
||||||
- Developing for WiiConnect24 channels allows a fresh look into its functionality, allowing important resources like [WiiBrew](https://wiibrew.org) to be updated.
|
- Having a fresh approach to existing methods is important. For example, doing our own research can lead to important developments.
|
||||||
|
- Developing for WiiConnect24 channels allows a fresh look into its functionality, allowing important resources like [WiiBrew](https://wiibrew.org) to be updated.
|
||||||
|
|
||||||
### WiiConnect24 services are already provided by other projects - why WiiLink?
|
### WiiConnect24 services are already provided by other projects - why WiiLink?
|
||||||
- We believe we can offer a fresh, new, and exciting spin on what WiiConnect24 channels can provide!
|
|
||||||
|
- We believe we can offer a fresh, new, and exciting spin on what WiiConnect24 channels can provide!
|
||||||
|
|
||||||
### Will WiiLink's offering conflict with existing services?
|
### Will WiiLink's offering conflict with existing services?
|
||||||
- If you already have existing services (such as RiiConnect24) on your console, don't fret! You won't have to install our versions of the software offered by them, and you can continue using them as you already are. This is not directly meant to be a replacement (albeit you may use it as such), and as such we just ask you to look at this as yet another addition to the WiiLink services line.
|
|
||||||
|
- If you already have existing services (such as RiiConnect24) on your console, don't fret! You won't have to install our versions of the software offered by them, and you can continue using them as you already are. This is not directly meant to be a replacement (albeit you may use it as such), and as such we just ask you to look at this as yet another addition to the WiiLink services line.
|
||||||
|
|
|
||||||
15
index.md
15
index.md
|
|
@ -27,24 +27,29 @@ info: <i class="mdi mdi-help-circle"></i>
|
||||||
# {{ page.info }} Quick FAQ
|
# {{ page.info }} Quick FAQ
|
||||||
|
|
||||||
## Why WiiLink?
|
## Why WiiLink?
|
||||||
- WiiLink is the only service to bring back Japanese exclusive Wii channels after they were officially shut down. We've made [Wii no Ma](/services/wii-room) and [Digicam Print Channel](/services/digicam) functional once more, and we're hard at work on the [Demae Channel](/services/demae). With our service, you can experience all of these once more on your Nintendo Wii - possibly for the first time.
|
|
||||||
|
- WiiLink is the only service to bring back Japanese exclusive Wii channels after they were officially shut down. We've made [Wii no Ma](/services/wii-room) and [Digicam Print Channel](/services/digicam) functional once more, and we're hard at work on the [Demae Channel](/services/demae). With our service, you can experience all of these once more on your Nintendo Wii - possibly for the first time.
|
||||||
|
|
||||||
## Why does WiiLink exist?
|
## Why does WiiLink exist?
|
||||||
- Without a replacement service for these Japanese channels, they would be lost to time, never to be seen again. However, thanks to our work, future generations of players can experience these channels again!
|
|
||||||
|
- Without a replacement service for these Japanese channels, they would be lost to time, never to be seen again. However, thanks to our work, future generations of players can experience these channels again!
|
||||||
|
|
||||||
## Is using WiiLink legal?
|
## Is using WiiLink legal?
|
||||||
- Absolutely. We develop all of our channels without copyrighted code and material, and rely solely on what is provided within the channel and public knowledge. All code is written from the ground up. You will have no legal trouble from using our service.
|
|
||||||
|
- Absolutely. We develop all of our channels without copyrighted code and material, and rely solely on what is provided within the channel and public knowledge. All code is written from the ground up. You will have no legal trouble from using our service.
|
||||||
|
|
||||||
## Will the Demae Channel order real food?
|
## Will the Demae Channel order real food?
|
||||||
- Yes!
|
|
||||||
|
- Yes!
|
||||||
|
|
||||||
<div class="center">
|
<div class="center">
|
||||||
### Have further questions? Read our full [{{ site.info }}](/faq)!
|
### Have further questions? Read our full [{{ site.info }}](/faq)!
|
||||||
|
|
||||||
# <i class="mdi mdi-movie-open"></i> Promotional Video
|
# <i class="mdi mdi-movie-open"></i> Promotional Video
|
||||||
|
|
||||||
<div class="embed">
|
<div class="embed">
|
||||||
<iframe src="https://www.youtube.com/embed/Y8gSqBd4oT0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" title="WiiLink: Japan Is Coming to You" allowfullscreen></iframe>
|
<iframe src="https://www.youtube.com/embed/Y8gSqBd4oT0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" title="WiiLink: Japan Is Coming to You" allowfullscreen></iframe>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -2,20 +2,21 @@
|
||||||
title: Digicam Install Guide
|
title: Digicam Install Guide
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
# Digicam Installation
|
# Digicam Installation
|
||||||
|
|
||||||
Thank you for trying out WiiLink24!
|
Thank you for trying out WiiLink24!
|
||||||
|
|
||||||
Installing Digicam takes a few more steps than usual, but it's made easy with our patchers.
|
Installing Digicam takes a few more steps than usual, but it's made easy with our patchers.
|
||||||
|
|
||||||
#### What you need
|
## What you need
|
||||||
|
|
||||||
* An SD card or USB drive
|
* An SD card or USB drive
|
||||||
* A Wii with an Internet connection
|
* A Wii with an Internet connection
|
||||||
* A Windows or Unix based computer
|
* A Windows or Unix based computer
|
||||||
* [WiiLink24 Patcher](https://github.com/WiiLink24/WiiLink24-Patcher/releases)
|
* [WiiLink24 Patcher](https://github.com/WiiLink24/WiiLink24-Patcher/releases)
|
||||||
|
|
||||||
#### Instructions
|
## Instructions
|
||||||
|
|
||||||
1. Download the required files based on your OS. On Windows, run `WiiLink24Patcher.bat`. On Unix systems, launch terminal and type sh, then drag the `WiiLink24Patcher.sh` into the terminal and press enter.
|
1. Download the required files based on your OS. On Windows, run `WiiLink24Patcher.bat`. On Unix systems, launch terminal and type sh, then drag the `WiiLink24Patcher.sh` into the terminal and press enter.
|
||||||
2. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`.
|
2. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`.
|
||||||
3. For this guide, choose "`Install WiiLink24 on your Wii`"
|
3. For this guide, choose "`Install WiiLink24 on your Wii`"
|
||||||
|
|
@ -35,7 +36,9 @@ Installing Digicam takes a few more steps than usual, but it's made easy with ou
|
||||||
17. Launch Digicam and enjoy!
|
17. Launch Digicam and enjoy!
|
||||||
|
|
||||||
## How to add your email to SPD
|
## How to add your email to SPD
|
||||||
|
|
||||||
Please make sure you have Digicam and the SPD `wad` installed on your Wii.
|
Please make sure you have Digicam and the SPD `wad` installed on your Wii.
|
||||||
|
|
||||||
1. Launch Digicam from your Wii's home menu
|
1. Launch Digicam from your Wii's home menu
|
||||||
2. On the bottom right, press `Address settings` and then `Yes`.
|
2. On the bottom right, press `Address settings` and then `Yes`.
|
||||||
3. Click on `Email Address` within SPD and type in your email address (make sure you **put it in correctly** or it **will not work**!)
|
3. Click on `Email Address` within SPD and type in your email address (make sure you **put it in correctly** or it **will not work**!)
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ description: These are the services that we (either now or in the future) mainta
|
||||||
<div class="center">
|
<div class="center">
|
||||||
|
|
||||||
## Core Services
|
## Core Services
|
||||||
|
|
||||||
Services core to WiiLink, originally only available within Japan.
|
Services core to WiiLink, originally only available within Japan.
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -27,7 +28,7 @@ Services core to WiiLink, originally only available within Japan.
|
||||||
<td class="publicly-available">Full Release</td>
|
<td class="publicly-available">Full Release</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <a href="/services/demae">Food Channel</a> </td>
|
<td> <a href="/services/food">Food Channel</a> </td>
|
||||||
<td class="publicly-available">Public Beta</td>
|
<td class="publicly-available">Public Beta</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -37,6 +38,7 @@ Services core to WiiLink, originally only available within Japan.
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
## WiiConnect24 Channels
|
## WiiConnect24 Channels
|
||||||
|
|
||||||
Functionality provided by WiiConnect24, revived by WiiLink.
|
Functionality provided by WiiConnect24, revived by WiiLink.
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
|
|
@ -59,6 +61,7 @@ Functionality provided by WiiConnect24, revived by WiiLink.
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
## Video Streaming Services
|
## Video Streaming Services
|
||||||
|
|
||||||
A myriad of services for you to best enjoy video within.
|
A myriad of services for you to best enjoy video within.
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
|
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
---
|
|
||||||
title: Demae
|
|
||||||
layout: no-section
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="header header-logo">
|
|
||||||
<h1>Demae</h1>
|
|
||||||
<h2>To your house without moving a finger.</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
|
|
||||||
## Explore meals from the comfort of your time.
|
|
||||||
- Deliver your favorites directly from your Wii.
|
|
||||||
- Order anything available.
|
|
||||||
- Find something new you enjoy.
|
|
||||||
- Secure.
|
|
||||||
|
|
||||||
## {{ site.info }}
|
|
||||||
### What do I do if I get error -1017 when installing?
|
|
||||||
- This is a known issue with the patcher!
|
|
||||||
- In the meantime, you will find a file titled `Demae.wad` on the root of your SD card. Use your favorite WAD manager to install!
|
|
||||||
|
|
||||||
### What do I do if I get error -1022 when installing?
|
|
||||||
- Using your favorite WAD manager, uninstall the Demae channel, and install again. For many, this means going to the location the Demae WAD is located, and pressing the `-` (minus) button on your Wii remote.
|
|
||||||
|
|
||||||
### I'm getting an error message when adding food to my basket.
|
|
||||||
- Please try erasing save data for the Demae Channel, and setting it up again! Let us know in #demae-support if you continue to experience issues.
|
|
||||||
|
|
||||||
### Will the Demae Channel order real food?
|
|
||||||
- Yes! Some current information:
|
|
||||||
- Support has been developed for Domino's in Canada, and Deliveroo in Europe.
|
|
||||||
- There are plans to expand more services over to Demae for other countries.
|
|
||||||
- If this ever changes throughout development, we will **always** have fake ordering, with restaurants curated from our team!
|
|
||||||
|
|
||||||
### When Demae Channel releases, how will I pay for food?
|
|
||||||
- The Demae Channel only supports **pay-on-delivery**, where you will have to pay in either cash or card, to the delivery driver. You cannot input your card details into the Demae Channel or Set Personal Data in any way.
|
|
||||||
|
|
||||||
### Does WiiLink save my address when using Demae Channel?
|
|
||||||
- No, we cannot see your address. The only time we ever receive it is when you place an order, where it is sent straight to the provider (e.g. Dominos), not us.
|
|
||||||
</div>
|
|
||||||
|
|
@ -10,29 +10,36 @@ layout: no-section
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
|
|
||||||
## Digicam arranges your beautiful photos into a masterpiece.
|
## Digicam arranges your beautiful photos into a masterpiece
|
||||||
- Print your perfect shots directly from your Wii.
|
|
||||||
- Create your own design.
|
- Print your perfect shots directly from your Wii.
|
||||||
- Emailed directly to you.
|
- Create your own design.
|
||||||
|
- Emailed directly to you.
|
||||||
|
|
||||||
## {{ site.info }}
|
## {{ site.info }}
|
||||||
### Are photos physically mailed to me?
|
|
||||||
- No! We use the email address you have registered via [Set Personal Data](/services/spd).
|
|
||||||
- Your photos are rendered on our server, and a ZIP file is emailed directly to you.
|
|
||||||
|
|
||||||
### Digicam is telling me that my address is within "Dallas, TX".
|
### Are photos physically mailed to me?
|
||||||
- This is the default address. Please change it via [Set Personal Data](/services/spd).
|
|
||||||
|
- No! We use the email address you have registered via [Set Personal Data](/services/spd).
|
||||||
|
- Your photos are rendered on our server, and a ZIP file is emailed directly to you.
|
||||||
|
|
||||||
|
### Digicam is telling me that my address is within "Dallas, TX"
|
||||||
|
|
||||||
|
- This is the default address. Please change it via [Set Personal Data](/services/spd).
|
||||||
|
|
||||||
### I use Dolphin. My photos or Miis sometimes become black. What can I do?
|
### I use Dolphin. My photos or Miis sometimes become black. What can I do?
|
||||||
- Within Dolphin's graphics settings, disable the setting "Store XFB Copies to Texture Only".
|
|
||||||
|
|
||||||
### Digicam is telling me that my selected image is not supported.
|
- Within Dolphin's graphics settings, disable the setting "Store XFB Copies to Texture Only".
|
||||||
- Digicam only supports "baseline" (not "progressive", or "interlaced") JPEGs. Here are some tips to make your photo compatible:
|
|
||||||
- Using Photoshop:
|
### Digicam is telling me that my selected image is not supported
|
||||||
- Go to File > Export > Save for Web (Legacy)
|
|
||||||
- Change the format to JPEG. Make sure to uncheck 'Progressive' and 'Optimized'.
|
- Digicam only supports "baseline" (not "progressive", or "interlaced") JPEGs. Here are some tips to make your photo compatible:
|
||||||
- Using Paint.NET:
|
- Using Photoshop:
|
||||||
- Go to File -> Save As...
|
- Go to File > Export > Save for Web (Legacy)
|
||||||
- Change the 'Save as type' to JPEG, and save.
|
- Change the format to JPEG. Make sure to uncheck 'Progressive' and 'Optimized'.
|
||||||
- You do not need to change any options - Paint.NET does not support progressive JPEGs, and will save as baseline.
|
- Using Paint.NET:
|
||||||
|
- Go to File -> Save As...
|
||||||
|
- Change the 'Save as type' to JPEG, and save.
|
||||||
|
- You do not need to change any options - Paint.NET does not support progressive JPEGs, and will save as baseline.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
50
services/food.md
Normal file
50
services/food.md
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
---
|
||||||
|
title: Food Channel
|
||||||
|
layout: no-section
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="header header-logo">
|
||||||
|
<h1>Food Channel</h1>
|
||||||
|
<h2>To your house without moving a finger.</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="section">
|
||||||
|
|
||||||
|
## Explore meals from the comfort of your time
|
||||||
|
|
||||||
|
- Deliver your favorites directly from your Wii.
|
||||||
|
- Order anything available.
|
||||||
|
- Find something new you enjoy.
|
||||||
|
- Secure.
|
||||||
|
|
||||||
|
## {{ site.info }}
|
||||||
|
|
||||||
|
### What do I do if I get error -1017 when installing?
|
||||||
|
|
||||||
|
- This is a known issue with the patcher!
|
||||||
|
- In the meantime, you will find a file titled `Demae.wad` on the root of your SD card. Use your favorite WAD manager to install!
|
||||||
|
|
||||||
|
### What do I do if I get error -1022 when installing?
|
||||||
|
|
||||||
|
- Using your favorite WAD manager, uninstall the Demae channel, and install again. For many, this means going to the location the Demae WAD is located, and pressing the `-` (minus) button on your Wii remote.
|
||||||
|
|
||||||
|
### I'm getting an error message when adding food to my basket
|
||||||
|
|
||||||
|
- Please try erasing save data for the Demae Channel, and setting it up again! Let us know in #demae-support if you continue to experience issues.
|
||||||
|
|
||||||
|
### Will the Demae Channel order real food?
|
||||||
|
|
||||||
|
- Yes! Some current information:
|
||||||
|
- Support has been developed for Domino's in Canada, and Deliveroo in Europe.
|
||||||
|
- There are plans to expand more services over to Demae for other countries.
|
||||||
|
- If this ever changes throughout development, we will **always** have fake ordering, with restaurants curated from our team!
|
||||||
|
|
||||||
|
### When Demae Channel releases, how will I pay for food?
|
||||||
|
|
||||||
|
- The Demae Channel only supports **pay-on-delivery**, where you will have to pay in either cash or card, to the delivery driver. You cannot input your card details into the Demae Channel or Set Personal Data in any way.
|
||||||
|
|
||||||
|
### Does WiiLink save my address when using Demae Channel?
|
||||||
|
|
||||||
|
- No, we cannot see your address. The only time we ever receive it is when you place an order, where it is sent straight to the provider (e.g. Dominos), not us.
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
@ -15,8 +15,10 @@ layout: no-section
|
||||||
- Watch 50+ episodes of Kirby after closing.
|
- Watch 50+ episodes of Kirby after closing.
|
||||||
|
|
||||||
## {{ site.info }}
|
## {{ site.info }}
|
||||||
|
|
||||||
### Kirby TV Channel freezes on the Now Showing page, what do I do?
|
### Kirby TV Channel freezes on the Now Showing page, what do I do?
|
||||||
- If you find that the Kirby TV Channel is freezing when you get to the "Now Showing" screen, that's because all of the Kirby: Right Back At Ya' episodes have finished airing!
|
|
||||||
- We are working on a rerun for the channel, so stay tuned for when we make an announcement about that in our [Discord server]({{ site.discord }}) or on [Twitter]({{ site.twitter }}).
|
- If you find that the Kirby TV Channel is freezing when you get to the "Now Showing" screen, that's because all of the Kirby: Right Back At Ya' episodes have finished airing!
|
||||||
|
- We are working on a rerun for the channel, so stay tuned for when we make an announcement about that in our [Discord server]({{ site.discord }}) or on [Twitter]({{ site.twitter }}).
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -10,22 +10,26 @@ layout: no-section
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
|
|
||||||
## Set Personal Data helps you use other services.
|
## Set Personal Data helps you use other services
|
||||||
|
|
||||||
- Allow yourself to order food to your own home.
|
- Allow yourself to order food to your own home.
|
||||||
- Keep your data secure with a personal PIN.
|
- Keep your data secure with a personal PIN.
|
||||||
- Customize other services to include your name.
|
- Customize other services to include your name.
|
||||||
|
|
||||||
## {{ site.info }}
|
## {{ site.info }}
|
||||||
|
|
||||||
### A channel is informing me I need to install Set Personal Data.
|
### A channel is informing me I need to install Set Personal Data
|
||||||
- Please follow [our installation guide]({{ site.guide }}) to use the patcher. From there, you will be able to install the Set Personal Data channel.
|
|
||||||
|
- Please follow [our installation guide]({{ site.guide }}) to use the patcher. From there, you will be able to install the Set Personal Data channel.
|
||||||
|
|
||||||
### What does this service do?
|
### What does this service do?
|
||||||
- The original "Set Personal Data" channel does not work well on non-Japanese Wiis, so we made our own.
|
|
||||||
- This allows you to set information such as your first/last name, and an email address.
|
|
||||||
- Many other channels require it to be installed so that they can access address information.
|
|
||||||
|
|
||||||
### Set Personal Data is telling me that my address is within "Dallas, TX".
|
- The original "Set Personal Data" channel does not work well on non-Japanese Wiis, so we made our own.
|
||||||
- This is the default address. You are welcome to update it to your own!
|
- This allows you to set information such as your first/last name, and an email address.
|
||||||
|
- Many other channels require it to be installed so that they can access address information.
|
||||||
|
|
||||||
|
### Set Personal Data is telling me that my address is within "Dallas, TX"
|
||||||
|
|
||||||
|
- This is the default address. You are welcome to update it to your own!
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -10,38 +10,47 @@ layout: no-section
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
|
|
||||||
## Wii Room is an exciting new way to use your console.
|
## Wii Room is an exciting new way to use your console
|
||||||
- Interact with your Wii in a way never before seen.
|
|
||||||
- View new content within the Homebrew community.
|
- Interact with your Wii in a way never before seen.
|
||||||
- Watch videos and movies - or even a cooking guide.
|
- View new content within the Homebrew community.
|
||||||
|
- Watch videos and movies - or even a cooking guide.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
## {{ site.info }}
|
## {{ site.info }}
|
||||||
|
|
||||||
### How can I install Wii Room?
|
### How can I install Wii Room?
|
||||||
- It's simple! Visit [our instructions on wii.guide]({{ site.guide }}) to get started.
|
|
||||||
|
- It's simple! Visit [our instructions on wii.guide]({{ site.guide }}) to get started.
|
||||||
|
|
||||||
### Is there an ETA on the release of Wii Room?
|
### Is there an ETA on the release of Wii Room?
|
||||||
- We do not currently have an exact date. Progress on the development of Wii Room and other services can be checked within announcements on our [Discord server]({{ site.discord }}) or [Twitter]({{ site.twitter }})!
|
|
||||||
|
- We do not currently have an exact date. Progress on the development of Wii Room and other services can be checked within announcements on our [Discord server]({{ site.discord }}) or [Twitter]({{ site.twitter }})!
|
||||||
|
|
||||||
### Can I suggest videos to be put on Wii Room?
|
### Can I suggest videos to be put on Wii Room?
|
||||||
- Because so many people would like to suggest videos for Wii Room, we currently restrict this ability to our [Patreon donators]({{ site.patreon }}).
|
|
||||||
|
- Because so many people would like to suggest videos for Wii Room, we currently restrict this ability to our [Patreon donators]({{ site.patreon }}).
|
||||||
|
|
||||||
### When will new content be added?
|
### When will new content be added?
|
||||||
- We are currently working on new ways to more easily update content. Stay tuned!
|
|
||||||
|
- We are currently working on new ways to more easily update content. Stay tuned!
|
||||||
|
|
||||||
### Why can I not rent a movie in Wii Room?
|
### Why can I not rent a movie in Wii Room?
|
||||||
- You can't purchase yet because of technical issues, with the same going for the shop, however these are currently being researched and worked on. For now, you can watch Wii Room content by clicking the "Trailer" button on a video.
|
|
||||||
|
- You can't purchase yet because of technical issues, with the same going for the shop, however these are currently being researched and worked on. For now, you can watch Wii Room content by clicking the "Trailer" button on a video.
|
||||||
|
|
||||||
### When will the Wii Room shop be functional?
|
### When will the Wii Room shop be functional?
|
||||||
- We currently have no plans regarding this.
|
|
||||||
|
|
||||||
### I have a PAL region console. Unfortunately, Wii Room freezes or crashes.
|
- We currently have no plans regarding this.
|
||||||
- Unfortunately, this is a known issue. We're aware of many crashes for PAL region consoles.
|
|
||||||
- We continue to work on a solution for this, and thank you for your patience.
|
### I have a PAL region console. Unfortunately, Wii Room freezes or crashes
|
||||||
|
|
||||||
|
- Unfortunately, this is a known issue. We're aware of many crashes for PAL region consoles.
|
||||||
|
- We continue to work on a solution for this, and thank you for your patience.
|
||||||
|
|
||||||
### I keep running into an error code starting with `354`. What can I do?
|
### I keep running into an error code starting with `354`. What can I do?
|
||||||
- Please join our [Discord server]({{ site.discord }}) or message us on our [Twitter]({{ site.twitter }}) account with more information. This error is server-side, so please let us know what happened for it to occur!
|
|
||||||
|
|
||||||
|
- Please join our [Discord server]({{ site.discord }}) or message us on our [Twitter]({{ site.twitter }}) account with more information. This error is server-side, so please let us know what happened for it to occur!
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue